Skip to content

Commit

Permalink
Merge pull request #89 from caskco/feature/fix-log-test
Browse files Browse the repository at this point in the history
Fixing log test case assert
  • Loading branch information
poornachandra committed Aug 12, 2014
2 parents 08291f4 + 0b56f2f commit 49182ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ public void onChange(ServiceDiscovered serviceDiscovered) {
logTail.getLogPrev(loggingContext, -1, 10, Filter.EMPTY_FILTER,
logCallback1);
List<LogEvent> allEvents = logCallback1.getEvents();
Assert.assertTrue(allEvents.size() > 5);
Assert.assertTrue(allEvents.size() >= 5);

// Finally - stop all services
Services.chainStop(dsService, opExecutorService, txManager);
Expand Down

0 comments on commit 49182ca

Please sign in to comment.