Skip to content

Commit

Permalink
Add temporary fix for test case failure
Browse files Browse the repository at this point in the history
  • Loading branch information
mohanvive committed Jun 5, 2019
1 parent 0eece45 commit 7863684
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 7863684

Please sign in to comment.