Skip to content

Commit

Permalink
Changed from NAKACK to NAKACK2
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Feb 3, 2012
1 parent 1c603e2 commit d7924b2
Showing 1 changed file with 3 additions and 3 deletions.
@@ -1,7 +1,7 @@
package org.jgroups.protocols; package org.jgroups.protocols;


import org.jgroups.*; import org.jgroups.*;
import org.jgroups.protocols.pbcast.NAKACK; import org.jgroups.protocols.pbcast.NAKACK2;
import org.jgroups.util.*; import org.jgroups.util.*;
import org.testng.annotations.AfterMethod; import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod; import org.testng.annotations.BeforeMethod;
Expand All @@ -13,7 +13,7 @@
*/ */
@Test(groups=Global.FUNCTIONAL) @Test(groups=Global.FUNCTIONAL)
public class NAKACK_SET_DIGEST_Test { public class NAKACK_SET_DIGEST_Test {
private NAKACK nak; private NAKACK2 nak;
private MutableDigest d1, d2; private MutableDigest d1, d2;
private Address a, b, c; private Address a, b, c;


Expand All @@ -24,7 +24,7 @@ protected void setUp() throws Exception {
a=Util.createRandomAddress("A"); a=Util.createRandomAddress("A");
b=Util.createRandomAddress("B"); b=Util.createRandomAddress("B");
c=Util.createRandomAddress("C"); c=Util.createRandomAddress("C");
nak=new NAKACK(); nak=new NAKACK2();
d1=new MutableDigest(2); d1=new MutableDigest(2);
d1.add(a, 11, 11); d1.add(a, 11, 11);
d1.add(b, 30, 35); d1.add(b, 30, 35);
Expand Down

0 comments on commit d7924b2

Please sign in to comment.