Browse Source

Fix ACI e2e : now we support passing commands, set `--domainname` before the image in the cmd

Signed-off-by: Guillaume Tardif <[email protected]>
Guillaume Tardif 5 years ago
parent
commit
7941e048a1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/aci-e2e/e2e-aci_test.go

+ 1 - 1
tests/aci-e2e/e2e-aci_test.go

@@ -363,9 +363,9 @@ func TestContainerRunAttached(t *testing.T) {
 			"--restart", "on-failure",
 			"--memory", "0.1G", "--cpus", "0.1",
 			"-p", "80:80",
-			"nginx",
 			"--domainname",
 			dnsLabelName,
+			"nginx",
 		)
 		followLogsProcess = icmd.StartCmd(cmd)