From f456825fe8783d84e23a5cd291c637b3c3ed53dd Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Wed, 29 May 2019 18:08:05 -0400 Subject: Fix bug in e2e tests for podman cp Signed-off-by: Matthew Heon --- test/e2e/cp_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/e2e/cp_test.go') diff --git a/test/e2e/cp_test.go b/test/e2e/cp_test.go index 529e01c99..e08d05eae 100644 --- a/test/e2e/cp_test.go +++ b/test/e2e/cp_test.go @@ -165,7 +165,7 @@ var _ = Describe("Podman cp", func() { err := ioutil.WriteFile(srcPath, fromHostToContainer, 0644) Expect(err).To(BeNil()) - session := podmanTest.Podman([]string{"create", ALPINE, "cat", "foo"}) + session := podmanTest.Podman([]string{"run", "-d", ALPINE, "top"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) name := session.OutputToString() -- cgit v1.2.3-54-g00ecf