diff options
-rw-r--r-- | test/e2e/exec_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/exec_test.go b/test/e2e/exec_test.go index da18f09a3..cfdc819a6 100644 --- a/test/e2e/exec_test.go +++ b/test/e2e/exec_test.go @@ -112,7 +112,7 @@ var _ = Describe("Podman exec", func() { It("podman exec with user only in container", func() { testUser := "test123" - setup := podmanTest.RunTopContainer("test1") + setup := podmanTest.Podman([]string{"run", "--name", "test1", "-d", fedoraMinimal, "sleep", "60"}) setup.WaitWithDefaultTimeout() Expect(setup.ExitCode()).To(Equal(0)) |