Skip to content

Commit

Permalink
GEODE-8252: Fix FixedPartitioningDUnitTest (#5580)
Browse files Browse the repository at this point in the history
Update FixedPartitioningDUnitTest after two PRs collided.
  • Loading branch information
kirklund committed Sep 30, 2020
1 parent 581b68d commit 07e8f64
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -76,10 +76,10 @@
import org.apache.geode.test.dunit.Wait;
import org.apache.geode.test.dunit.rules.DistributedBlackboard;
import org.apache.geode.test.dunit.rules.DistributedDiskDirRule;
import org.apache.geode.test.dunit.rules.DistributedErrorCollector;
import org.apache.geode.test.dunit.rules.DistributedReference;
import org.apache.geode.test.dunit.rules.DistributedRestoreSystemProperties;
import org.apache.geode.test.dunit.rules.DistributedRule;
import org.apache.geode.test.dunit.rules.SharedErrorCollector;
import org.apache.geode.test.junit.categories.PartitioningTest;

/**
Expand Down Expand Up @@ -111,7 +111,7 @@ public class FixedPartitioningDUnitTest implements Serializable {
@Rule
public DistributedRestoreSystemProperties restoreProps = new DistributedRestoreSystemProperties();
@Rule
public SharedErrorCollector errorCollector = new SharedErrorCollector();
public DistributedErrorCollector errorCollector = new DistributedErrorCollector();
@Rule
public DistributedBlackboard blackboard = new DistributedBlackboard();

Expand Down

0 comments on commit 07e8f64

Please sign in to comment.