Skip to content

Commit

Permalink
Merge pull request containers#12518 from vrothberg/fix-12167
Browse files Browse the repository at this point in the history
e2e: fix pprof flakes
  • Loading branch information
openshift-merge-robot authored Dec 6, 2021
2 parents 188f198 + 6d7e6d7 commit 6d1b2dc
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions test/e2e/system_service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ var _ = Describe("podman system service", func() {
defer session.Kill()

WaitForService(address)

session.Wait(5 * time.Second)
Eventually(session, 5).Should(Exit(0))
})
})
Expand Down Expand Up @@ -91,7 +89,7 @@ var _ = Describe("podman system service", func() {
Expect(body).ShouldNot(BeEmpty())

session.Interrupt().Wait(2 * time.Second)
Eventually(session).Should(Exit(1))
Eventually(session, 5).Should(Exit(1))
})

It("are not available", func() {
Expand All @@ -113,7 +111,7 @@ var _ = Describe("podman system service", func() {
Expect(session.Err.Contents()).ShouldNot(ContainSubstring(magicComment))

session.Interrupt().Wait(2 * time.Second)
Eventually(session).Should(Exit(1))
Eventually(session, 5).Should(Exit(1))
})
})
})
Expand Down

0 comments on commit 6d1b2dc

Please sign in to comment.