Skip to content

Commit

Permalink
ns
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Feb 3, 2012
1 parent 43aae7a commit 6e23ada
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions tests/junit/org/jgroups/tests/FifoOrderTest.java
Expand Up @@ -26,9 +26,9 @@ public class FifoOrderTest extends ChannelTestBase {
@BeforeMethod
void setUp() throws Exception {
barrier=new CyclicBarrier(4);
ch1=createChannel(true,3);
ch2=createChannel(ch1);
ch3=createChannel(ch1);
ch1=createChannel(true,3, "A");
ch2=createChannel(ch1, "B");
ch3=createChannel(ch1, "C");
}

@AfterMethod
Expand Down
4 changes: 2 additions & 2 deletions tests/junit/org/jgroups/tests/UnicastUnitTest.java
Expand Up @@ -19,8 +19,8 @@ public class UnicastUnitTest extends ChannelTestBase {

@BeforeMethod
protected void setUp() throws Exception {
ch1=createChannel(true,2);
ch2=createChannel(ch1);
ch1=createChannel(true,2, "A");
ch2=createChannel(ch1, "B");
}

@AfterMethod
Expand Down

0 comments on commit 6e23ada

Please sign in to comment.