aboutsummaryrefslogtreecommitdiff
path: root/test/e2e
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-10-12 21:08:10 +0200
committerGitHub <noreply@github.com>2021-10-12 21:08:10 +0200
commit03095bd090e067ef1a2978a2107ec07ff3f95a2c (patch)
treea358550e152355529412e3247aeaefc2887db306 /test/e2e
parent65e156467b5cc40e14a578a6d916e4df902d0a99 (diff)
parent0459484bdf51b3aabc51f2ae82136b6b0f3d88ba (diff)
downloadpodman-03095bd090e067ef1a2978a2107ec07ff3f95a2c.tar.gz
podman-03095bd090e067ef1a2978a2107ec07ff3f95a2c.tar.bz2
podman-03095bd090e067ef1a2978a2107ec07ff3f95a2c.zip
Merge pull request #11927 from jwhonce/issues/11921
Fix CI flake on time of shutdown for API service
Diffstat (limited to 'test/e2e')
-rw-r--r--test/e2e/system_service_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/e2e/system_service_test.go b/test/e2e/system_service_test.go
index 684ac56b4..9a4d687c3 100644
--- a/test/e2e/system_service_test.go
+++ b/test/e2e/system_service_test.go
@@ -65,7 +65,7 @@ var _ = Describe("podman system service", func() {
pprofPort := randomPort()
session := podmanTest.Podman([]string{
- "system", "service", "--log-level=info", "--time=0",
+ "system", "service", "--log-level=debug", "--time=0",
"--pprof-address=localhost:" + pprofPort, address.String(),
})
defer session.Kill()
@@ -91,7 +91,7 @@ var _ = Describe("podman system service", func() {
Expect(body).ShouldNot(BeEmpty())
session.Interrupt().Wait(2 * time.Second)
- Eventually(session, 2).Should(Exit(1))
+ Eventually(session).Should(Exit(1))
})
It("are not available", func() {
@@ -103,7 +103,7 @@ var _ = Describe("podman system service", func() {
}
session := podmanTest.Podman([]string{
- "system", "service", "--log-level=info", "--time=0", address.String(),
+ "system", "service", "--log-level=debug", "--time=0", address.String(),
})
defer session.Kill()
@@ -113,7 +113,7 @@ var _ = Describe("podman system service", func() {
Expect(session.Err.Contents()).ShouldNot(ContainSubstring(magicComment))
session.Interrupt().Wait(2 * time.Second)
- Eventually(session, 2).Should(Exit(1))
+ Eventually(session).Should(Exit(1))
})
})
})