[NO JIRA] harden test occasional failure

This commit is contained in:
gtully 2017-12-19 11:48:47 +00:00
parent 52480a4af8
commit 22f8f88ddb
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ public class ListenerTest {
Wait.waitFor(new Wait.Condition() { Wait.waitFor(new Wait.Condition() {
public boolean isSatisified() throws Exception { public boolean isSatisified() throws Exception {
return (6 * msgNum) <= listener.messages.size(); return (6 * msgNum) == listener.messages.size();
} }
}); });