diff options
Diffstat (limited to 'extras/hs-test/http_test.go')
-rw-r--r-- | extras/hs-test/http_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/hs-test/http_test.go b/extras/hs-test/http_test.go index c1b3b7f2a03..3f1d303d422 100644 --- a/extras/hs-test/http_test.go +++ b/extras/hs-test/http_test.go @@ -48,7 +48,7 @@ func (s *NoTopoSuite) TestNginxAsServer() { s.assertNil(nginxCont.run()) vpp := s.getContainerByName("vpp").vppInstance - vpp.waitForApp("-app", 5) + vpp.waitForApp("nginx-", 5) serverAddress := s.netInterfaces[tapInterfaceName].Peer().IP4AddressString() @@ -85,7 +85,7 @@ func runNginxPerf(s *NoTopoSuite, mode, ab_or_wrk string) error { nginxCont := s.getContainerByName("nginx") s.assertNil(nginxCont.run()) - vpp.waitForApp("-app", 5) + vpp.waitForApp("nginx-", 5) cmd := exec.Command(exeName, args...) s.log(cmd) |