diff options
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/commit_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/commit_test.go b/test/e2e/commit_test.go index 154a83bd2..30f208f6f 100644 --- a/test/e2e/commit_test.go +++ b/test/e2e/commit_test.go @@ -48,7 +48,7 @@ var _ = Describe("Podman commit", func() { Expect(ec).To(Equal(0)) Expect(podmanTest.NumberOfContainers()).To(Equal(1)) - session := podmanTest.Podman([]string{"commit", "--message", "testing-commit", "test1", "foobar.com/test1-image:latest"}) + session := podmanTest.Podman([]string{"commit", "-f", "docker", "--message", "testing-commit", "test1", "foobar.com/test1-image:latest"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) |