From cfa03394b5e9a4724c33606196ad745c15395c79 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Fri, 2 Jun 2023 13:08:02 +0300 Subject: [PATCH] remove stray print statement in datagram test (#3828) --- integrationtests/self/datagram_test.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/integrationtests/self/datagram_test.go b/integrationtests/self/datagram_test.go index 2ccbbe16..65cb13fa 100644 --- a/integrationtests/self/datagram_test.go +++ b/integrationtests/self/datagram_test.go @@ -119,10 +119,7 @@ var _ = Describe("Datagram test", func() { var counter int for { // Close the connection if no message is received for 100 ms. - timer := time.AfterFunc(scaleDuration(100*time.Millisecond), func() { - fmt.Println("closing conn") - conn.CloseWithError(0, "") - }) + timer := time.AfterFunc(scaleDuration(100*time.Millisecond), func() { conn.CloseWithError(0, "") }) if _, err := conn.ReceiveMessage(); err != nil { break }