remove stray fmt.Println in integrationtests

This commit is contained in:
Marten Seemann
2017-04-27 18:41:31 +07:00
parent c62fa83248
commit 40cdea8deb

View File

@@ -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))