From a24e08e6dea3111a37d08dd2fdf931e9cc8a4f2a Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Wed, 10 May 2023 15:53:58 -0700 Subject: [PATCH] lib/bytesutil: `go fmt` after 2ec17bed2c8b5eb53a091d8a7220935f5fdacfe4 --- lib/bytesutil/bytesutil_timing_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/bytesutil/bytesutil_timing_test.go b/lib/bytesutil/bytesutil_timing_test.go index 7a320d43c..c140a50fe 100644 --- a/lib/bytesutil/bytesutil_timing_test.go +++ b/lib/bytesutil/bytesutil_timing_test.go @@ -9,7 +9,7 @@ func BenchmarkToUnsafeString(b *testing.B) { buf := []byte("foobarbaz abcde fafdsfds") b.ReportAllocs() b.SetBytes(int64(len(buf))) - b.RunParallel(func (pb *testing.PB) { + b.RunParallel(func(pb *testing.PB) { n := 0 for pb.Next() { for i := range buf { @@ -25,7 +25,7 @@ func BenchmarkToUnsafeBytes(b *testing.B) { s := "foobarbaz abcde fafdsfds" b.ReportAllocs() b.SetBytes(int64(len(s))) - b.RunParallel(func (pb *testing.PB) { + b.RunParallel(func(pb *testing.PB) { n := 0 for pb.Next() { for i := range s {