diff options
author | Ed Santiago <santiago@redhat.com> | 2021-11-30 13:14:56 -0700 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2021-11-30 15:19:57 -0700 |
commit | 9ce7ade8c8dedb6a082614e45aa10d0e37c725cc (patch) | |
tree | aeefee1ec3a9bac7ee92c7d8d88f3d85c1364cef /test/e2e/run_signal_test.go | |
parent | 295a6f7dd086731448a1168a349f62d3035258ca (diff) | |
download | podman-9ce7ade8c8dedb6a082614e45aa10d0e37c725cc.tar.gz podman-9ce7ade8c8dedb6a082614e45aa10d0e37c725cc.tar.bz2 podman-9ce7ade8c8dedb6a082614e45aa10d0e37c725cc.zip |
e2e: yet more cleanup of BeTrue/BeFalse
Thanks to Paul for teaching me about HaveKey()
Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'test/e2e/run_signal_test.go')
-rw-r--r-- | test/e2e/run_signal_test.go | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/e2e/run_signal_test.go b/test/e2e/run_signal_test.go index 49f456366..6bb325155 100644 --- a/test/e2e/run_signal_test.go +++ b/test/e2e/run_signal_test.go @@ -116,8 +116,7 @@ var _ = Describe("Podman run with --sig-proxy", func() { } session, pid := podmanTest.PodmanPID([]string{"run", "--name", "test2", "--sig-proxy=false", fedoraMinimal, "bash", "-c", sigCatch2}) - ok := WaitForContainer(podmanTest) - Expect(ok).To(BeTrue()) + Expect(WaitForContainer(podmanTest)).To(BeTrue(), "WaitForContainer()") // Kill with given signal // Should be no output, SIGPOLL is usually ignored @@ -132,8 +131,7 @@ var _ = Describe("Podman run with --sig-proxy", func() { session.WaitWithDefaultTimeout() Expect(session).To(ExitWithError()) - ok, _ = session.GrepString("Received") - Expect(ok).To(BeFalse()) + Expect(session.OutputToString()).To(Not(ContainSubstring("Received"))) }) }) |