summaryrefslogtreecommitdiff
path: root/tests/e2e/lifecycle_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/e2e/lifecycle_test.go')
-rw-r--r--tests/e2e/lifecycle_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/e2e/lifecycle_test.go b/tests/e2e/lifecycle_test.go
index 67b1370..b6c001b 100644
--- a/tests/e2e/lifecycle_test.go
+++ b/tests/e2e/lifecycle_test.go
@@ -10,8 +10,8 @@ import (
)
func waitForPids(t *testing.T, pidsDir string, expectedCount int) {
- timeout := time.After(2 * time.Second)
- tick := time.NewTicker(50 * time.Millisecond)
+ timeout := time.After(5 * time.Second)
+ tick := time.NewTicker(100 * time.Millisecond)
defer tick.Stop()
for {
@@ -38,8 +38,8 @@ func waitForPids(t *testing.T, pidsDir string, expectedCount int) {
}
func waitForLifecycle(t *testing.T, binaryPath, runtimeDir, profile string, expectedActive bool) {
- timeout := time.After(2 * time.Second)
- tick := time.NewTicker(50 * time.Millisecond)
+ timeout := time.After(5 * time.Second)
+ tick := time.NewTicker(100 * time.Millisecond)
defer tick.Stop()
for {