From cdee2769053770cf1c310032fa28ab12aa3e034d Mon Sep 17 00:00:00 2001 From: Martin Riedl Date: Thu, 18 Mar 2021 19:02:42 +0100 Subject: [PATCH] fixed build warnings --- router_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/router_test.go b/router_test.go index 4df1715..62ce6f0 100755 --- a/router_test.go +++ b/router_test.go @@ -74,7 +74,7 @@ func TestRouterServer(t *testing.T) { } // wait for completion - _ = <-quitChan + <-quitChan listener.Close() } @@ -96,7 +96,7 @@ func TestRouterServerHandler(t *testing.T) { } // wait for completion - _ = <-testHandler.CloseChannel + <-testHandler.CloseChannel listener.Close() }