Skip to content

Commit

Permalink
go fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanashworth committed Sep 28, 2020
1 parent e42eca0 commit cfc775a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/collection/fields_test.go
Expand Up @@ -69,5 +69,5 @@ func BenchmarkItemFields(b *testing.B) {
// Print out the memory usage of the first object.
bytesUsed := coll.TotalWeight()
fmt.Printf("%d bytes used, %f bytes per object, %f bytes per object per field\n",
bytesUsed, float64(bytesUsed) / float64(b.N), float64(bytesUsed) / (float64(b.N * k) * fillRatio))
bytesUsed, float64(bytesUsed)/float64(b.N), float64(bytesUsed)/(float64(b.N*k)*fillRatio))
}

0 comments on commit cfc775a

Please sign in to comment.