Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JNSimba committed Sep 10, 2024
1 parent 000f2b5 commit 7518568
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,7 @@ public void testJobManagerFailoverSource() throws Exception {
}
List<String> actual = fetchRows(iterator);
LOG.info("actual data: {}, expected: {}", actual, expectedData);
Assert.assertTrue(actual.size() >= expectedData.size());
Assert.assertTrue(actual.containsAll(expectedData));
}

Expand Down Expand Up @@ -461,6 +462,7 @@ public void testTaskManagerFailoverSource() throws Exception {

List<String> actual = fetchRows(iterator);
LOG.info("actual data: {}, expected: {}", actual, expectedData);
Assert.assertTrue(actual.size() >= expectedData.size());
Assert.assertTrue(actual.containsAll(expectedData));
}

Expand Down

0 comments on commit 7518568

Please sign in to comment.