Skip to content

Commit

Permalink
Increase sleep time in flaky tests again... again
Browse files Browse the repository at this point in the history
  • Loading branch information
mscwilson committed Apr 4, 2024
1 parent 9c2417c commit 6d79c99
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class ApplicationInstallEventTest {
.installAutotracking(true)
createTracker(listOf(trackerConfiguration, plugin))

Thread.sleep(1200)
Thread.sleep(1500)

// check if event was tracked
Assert.assertTrue(eventTracked)
Expand All @@ -65,7 +65,7 @@ class ApplicationInstallEventTest {
.installAutotracking(true)
createTracker(listOf(trackerConfiguration, plugin))

Thread.sleep(1200)
Thread.sleep(1500)

// check if event was tracked
Assert.assertTrue(eventTracked)
Expand All @@ -76,7 +76,7 @@ class ApplicationInstallEventTest {
// create tracker again
createTracker(listOf(trackerConfiguration, plugin))

Thread.sleep(1200)
Thread.sleep(1500)

// check if event was tracked
Assert.assertFalse(eventTracked)
Expand Down

0 comments on commit 6d79c99

Please sign in to comment.