diff options
Diffstat (limited to 'integration_tests/performance_test.go')
-rw-r--r-- | integration_tests/performance_test.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/integration_tests/performance_test.go b/integration_tests/performance_test.go index 1122858..83bf207 100644 --- a/integration_tests/performance_test.go +++ b/integration_tests/performance_test.go @@ -58,7 +58,6 @@ func BenchmarkStreamRead(t *testing.B) { } } f2.Close() - //fmt.Printf("done\n") } file, err := os.Open(fn) @@ -70,7 +69,7 @@ func BenchmarkStreamRead(t *testing.B) { for i = 0; i < t.N; i++ { _, err := file.Read(buf) if err == io.EOF { - fmt.Printf("Test file too small\n") + fmt.Println("Test file too small") t.SkipNow() } else if err != nil { fmt.Println(err) |