diff options
Diffstat (limited to 'extras/hs-test/linux_iperf_test.go')
-rw-r--r-- | extras/hs-test/linux_iperf_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/hs-test/linux_iperf_test.go b/extras/hs-test/linux_iperf_test.go index c03403c9e26..47ebd0363ab 100644 --- a/extras/hs-test/linux_iperf_test.go +++ b/extras/hs-test/linux_iperf_test.go @@ -11,7 +11,7 @@ func (s *TapSuite) TestLinuxIperf() { go s.startServerApp(srvCh, stopServerCh, nil) err := <-srvCh - s.assertNil(err) + s.assertNil(err, err) s.log("server running") ipAddress := s.netInterfaces[tapInterfaceName].ip4AddressString() @@ -19,6 +19,6 @@ func (s *TapSuite) TestLinuxIperf() { s.log("client running") s.log(<-clnRes) err = <-clnCh - s.assertNil(err) + s.assertNil(err, "err: '%s', ip: '%s'", err, ipAddress) s.log("Test completed") } |