summaryrefslogtreecommitdiff
path: root/test/e2e/run_cleanup_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-09-17 07:02:52 -0400
committerGitHub <noreply@github.com>2021-09-17 07:02:52 -0400
commit9a5987cf6a7729f9d03a663dd361a37ca473da59 (patch)
tree447677216c3a88bef777cd6a452252a0314f17a7 /test/e2e/run_cleanup_test.go
parentc6ae5c7961e2663ba91de7877aafe9791a80b245 (diff)
parent4216f7b7f492fee80cfc9a7f1deb608096edd890 (diff)
downloadpodman-9a5987cf6a7729f9d03a663dd361a37ca473da59.tar.gz
podman-9a5987cf6a7729f9d03a663dd361a37ca473da59.tar.bz2
podman-9a5987cf6a7729f9d03a663dd361a37ca473da59.zip
Merge pull request #11603 from rhatdan/truncate
Add no-trunc support to podman-events
Diffstat (limited to 'test/e2e/run_cleanup_test.go')
-rw-r--r--test/e2e/run_cleanup_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/run_cleanup_test.go b/test/e2e/run_cleanup_test.go
index cfe11079d..6753fcf12 100644
--- a/test/e2e/run_cleanup_test.go
+++ b/test/e2e/run_cleanup_test.go
@@ -46,7 +46,7 @@ var _ = Describe("Podman run exit", func() {
Expect(mount).Should(Exit(0))
Expect(mount.OutputToString()).To(ContainSubstring(cid))
- pmount := podmanTest.Podman([]string{"mount", "--notruncate"})
+ pmount := podmanTest.Podman([]string{"mount", "--no-trunc"})
pmount.WaitWithDefaultTimeout()
Expect(pmount).Should(Exit(0))
Expect(pmount.OutputToString()).To(ContainSubstring(cid))
@@ -64,7 +64,7 @@ var _ = Describe("Podman run exit", func() {
Expect(mount).Should(Exit(0))
Expect(mount.OutputToString()).NotTo(ContainSubstring(cid))
- pmount = podmanTest.Podman([]string{"mount", "--notruncate"})
+ pmount = podmanTest.Podman([]string{"mount", "--no-trunc"})
pmount.WaitWithDefaultTimeout()
Expect(pmount).Should(Exit(0))
Expect(pmount.OutputToString()).NotTo(ContainSubstring(cid))