summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToshiki Sonoda <sonoda.toshiki@fujitsu.com>2022-09-30 13:28:16 +0900
committerToshiki Sonoda <sonoda.toshiki@fujitsu.com>2022-09-30 13:28:16 +0900
commitf304a1757c7accb9263d820bbadc920b4a9c099f (patch)
tree603e6b117475e097b744f856207b89057748c059
parent61068649fac22fd9ef4fe0b57b4c29b650f3c05c (diff)
downloadpodman-f304a1757c7accb9263d820bbadc920b4a9c099f.tar.gz
podman-f304a1757c7accb9263d820bbadc920b4a9c099f.tar.bz2
podman-f304a1757c7accb9263d820bbadc920b4a9c099f.zip
Fix typo about e2e tests name
* podman stop --all -> podman kill --all * podman pause --filter -> podman restart --filter [NO NEW TESTS NEEDED] [NO TESTS NEEDED] Signed-off-by: Toshiki Sonoda <sonoda.toshiki@fujitsu.com>
-rw-r--r--test/e2e/kill_test.go2
-rw-r--r--test/e2e/restart_test.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/kill_test.go b/test/e2e/kill_test.go
index 30c82c45d..d789a6595 100644
--- a/test/e2e/kill_test.go
+++ b/test/e2e/kill_test.go
@@ -201,7 +201,7 @@ var _ = Describe("Podman kill", func() {
Expect(wait).Should(Exit(0))
})
- It("podman stop --all", func() {
+ It("podman kill --all", func() {
session := podmanTest.RunTopContainer("")
session.WaitWithDefaultTimeout()
Expect(session).Should(Exit(0))
diff --git a/test/e2e/restart_test.go b/test/e2e/restart_test.go
index 87d20a2e6..effb716a8 100644
--- a/test/e2e/restart_test.go
+++ b/test/e2e/restart_test.go
@@ -321,7 +321,7 @@ var _ = Describe("Podman restart", func() {
Expect(result.ErrorToString()).To(ContainSubstring("cannot be used together"))
})
- It("podman pause --filter", func() {
+ It("podman restart --filter", func() {
session1 := podmanTest.RunTopContainer("")
session1.WaitWithDefaultTimeout()
Expect(session1).Should(Exit(0))