Skip to content

Commit

Permalink
test(storage): fix formatting error (#11494)
Browse files Browse the repository at this point in the history
This value under the hood is a string and not a number.

Fixes: #11474
  • Loading branch information
codyoss authored Jan 24, 2025
1 parent 232775b commit af85dcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/internal/benchmarks/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ func (b *benchmarkOptions) String() string {

stringifiedOpts := []string{
fmt.Sprintf("api:\t\t\t%s", b.api),
fmt.Sprintf("interity check:\t\t%d", b.integrity),
fmt.Sprintf("interity check:\t\t%v", b.integrity),
fmt.Sprintf("region:\t\t\t%s", b.region),
fmt.Sprintf("timeout:\t\t%s", b.timeout),
fmt.Sprintf("number of samples:\t%d", b.numSamples),
Expand Down

0 comments on commit af85dcf

Please sign in to comment.