diff options
author | Filip Tehlar <ftehlar@cisco.com> | 2023-01-09 12:07:09 +0100 |
---|---|---|
committer | Filip Tehlar <ftehlar@cisco.com> | 2023-01-09 12:14:23 +0100 |
commit | f3ee2b636ad3b12e7484ec6fb13f220699417046 (patch) | |
tree | 20a2f6a1a0b42d0306e947b9b19f6861df5dbb92 /extras/hs-test/linux_iperf_test.go | |
parent | c204c87c186993704927beffa4d5b1cafaf9a193 (diff) |
hs-test: fix code style
This will add a new target (fixstyle) to Makefile that runs gofmt tool.
Type: style
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Change-Id: Icba60633f82aa8bbc75749f080e00f0375b55a18
Diffstat (limited to 'extras/hs-test/linux_iperf_test.go')
-rwxr-xr-x | extras/hs-test/linux_iperf_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/hs-test/linux_iperf_test.go b/extras/hs-test/linux_iperf_test.go index 38649e5d4f4..833fb2c2c4a 100755 --- a/extras/hs-test/linux_iperf_test.go +++ b/extras/hs-test/linux_iperf_test.go @@ -15,7 +15,7 @@ func (s *TapSuite) TestLinuxIperf() { s.log("server running") go StartClientApp(nil, clnCh, clnRes) s.log("client running") - s.log(<- clnRes) + s.log(<-clnRes) err = <-clnCh s.assertNil(err) s.log("Test completed") |