From 40cdea8deb01b7cda515f458b70aed199b142833 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Thu, 27 Apr 2017 18:41:31 +0700 Subject: [PATCH] remove stray fmt.Println in integrationtests --- integrationtests/random_rtt_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/integrationtests/random_rtt_test.go b/integrationtests/random_rtt_test.go index bf68031e7..c9a74a5b6 100644 --- a/integrationtests/random_rtt_test.go +++ b/integrationtests/random_rtt_test.go @@ -41,7 +41,6 @@ var _ = Describe("Random Duration Generator", func() { } } avg := sum / time.Duration(rep) - fmt.Println(avg) Expect(avg).To(BeNumerically("~", 300*time.Millisecond, 5*time.Millisecond)) Expect(min).To(BeNumerically(">=", 100*time.Millisecond)) Expect(min).To(BeNumerically("<", 105*time.Millisecond))