aboutsummaryrefslogtreecommitdiffstats
path: root/extras/hs-test/linux_iperf_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'extras/hs-test/linux_iperf_test.go')
-rw-r--r--extras/hs-test/linux_iperf_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/extras/hs-test/linux_iperf_test.go b/extras/hs-test/linux_iperf_test.go
index 954b54e7e8a..04556a8fe45 100644
--- a/extras/hs-test/linux_iperf_test.go
+++ b/extras/hs-test/linux_iperf_test.go
@@ -9,13 +9,13 @@ func (s *TapSuite) TestLinuxIperf() {
stopServerCh <- struct{}{}
}()
- go StartServerApp(srvCh, stopServerCh, nil)
+ go startServerApp(srvCh, stopServerCh, nil)
err := <-srvCh
s.assertNil(err)
s.log("server running")
- ipAddress := s.netInterfaces[tapInterfaceName].IP4AddressString()
- go StartClientApp(ipAddress, nil, clnCh, clnRes)
+ ipAddress := s.netInterfaces[tapInterfaceName].ip4AddressString()
+ go startClientApp(ipAddress, nil, clnCh, clnRes)
s.log("client running")
s.log(<-clnRes)
err = <-clnCh