Skip to content

Commit

Permalink
ns
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Apr 23, 2024
1 parent 96c1675 commit 6b646f2
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -39,7 +39,9 @@ public void testSendMulticast() throws Exception {
a.connect(BatchMessageTest.class.getSimpleName());
b.connect(BatchMessageTest.class.getSimpleName());
Util.waitUntilAllChannelsHaveSameView(2000, 100, a,b);
BatchMessage msg=new BatchMessage(DEST, SRC, new Message[]{M1,M2,M3}, 3);
BatchMessage msg=new BatchMessage(null, 3);
for(int i=1; i <= 5; i++)
msg.add(new ObjectMessage(null, "hello-" + i));
a.send(msg);
Util.waitUntil(2000, 100, () -> r1.size() == 1 && r2.size() == 1);
}
Expand Down

0 comments on commit 6b646f2

Please sign in to comment.