Skip to content

Commit

Permalink
Reduce the probability of test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
mohanvive committed Sep 10, 2019
1 parent 4cd22c7 commit ac0c1cd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1952,7 +1952,7 @@ public void testQueryAbsent47() throws InterruptedException {
siddhiAppRuntime.shutdown();
}

@Test //(dependsOnMethods = {"testQueryAbsent47"})
@Test(dependsOnMethods = {"testQueryAbsent47"})
public void testQueryAbsent48() throws InterruptedException {
log.info("Test the query every (not e1 for 2 sec or not e2 for 2 sec) -> e3 with only e3 after 4 seconds");

Expand All @@ -1977,7 +1977,7 @@ public void testQueryAbsent48() throws InterruptedException {
InputHandler stream3 = siddhiAppRuntime.getInputHandler("Stream3");
siddhiAppRuntime.start();

Thread.sleep(4200);
Thread.sleep(4100);
stream3.send(new Object[]{"WSO2", 35.0f, 100});
Thread.sleep(1000);

Expand Down

0 comments on commit ac0c1cd

Please sign in to comment.