Skip to content

Commit

Permalink
Merge pull request #97 from mohanvive/master
Browse files Browse the repository at this point in the history
Add temporary fix for test case failure
  • Loading branch information
dnwick authored Jun 5, 2019
2 parents 0eece45 + 7863684 commit b7f7735
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -697,10 +697,11 @@ public void receive(Event[] events) {
List<Long> expectedValues = new ArrayList<>(2);
expectedValues.add(0L);
expectedValues.add(0L);
Thread.sleep(3000);
AssertJUnit.assertEquals(2, count);
AssertJUnit.assertEquals("Kafka Source expected input not received", expectedNames,
receivedEventNameList);
AssertJUnit.assertEquals("Kafka Source expected input not received", expectedValues, receivedValueList);
AssertJUnit.assertEquals(2, count);
KafkaTestUtil.deleteTopic(topics);
siddhiAppRuntime.shutdown();
} catch (ZkTimeoutException ex) {
Expand Down

0 comments on commit b7f7735

Please sign in to comment.