fix tests
Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/fbd51b77 Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/fbd51b77 Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/fbd51b77 Branch: refs/heads/trunk Commit: fbd51b77a047f2a04a94c4b474881c2be9bf1171 Parents: 87c6ec1 Author: Brandon Williams <[email protected]> Authored: Fri Jan 10 13:50:35 2014 -0600 Committer: Brandon Williams <[email protected]> Committed: Fri Jan 10 13:53:05 2014 -0600 ---------------------------------------------------------------------- .../cassandra/service/LeaveAndBootstrapTest.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/fbd51b77/test/unit/org/apache/cassandra/service/LeaveAndBootstrapTest.java ---------------------------------------------------------------------- diff --git a/test/unit/org/apache/cassandra/service/LeaveAndBootstrapTest.java b/test/unit/org/apache/cassandra/service/LeaveAndBootstrapTest.java index a9d8057..4c1421a 100644 --- a/test/unit/org/apache/cassandra/service/LeaveAndBootstrapTest.java +++ b/test/unit/org/apache/cassandra/service/LeaveAndBootstrapTest.java @@ -24,7 +24,7 @@ import java.net.InetAddress; import java.net.UnknownHostException; import java.util.*; -import org.apache.cassandra.db.SystemKeyspace; +import org.apache.cassandra.db.SystemTable; import org.apache.cassandra.exceptions.ConfigurationException; import org.apache.cassandra.config.Schema; import org.junit.Test; @@ -661,14 +661,14 @@ public class LeaveAndBootstrapTest VersionedValue.VersionedValueFactory valueFactory = new VersionedValue.VersionedValueFactory(partitioner); // create a ring of 2 nodes - ArrayList<Token> endpointTokens = new ArrayList<>(); - List<InetAddress> hosts = new ArrayList<>(); + ArrayList<Token> endpointTokens = new ArrayList<Token>(); + List<InetAddress> hosts = new ArrayList<InetAddress>(); Util.createInitialRing(ss, partitioner, endpointTokens, new ArrayList<Token>(), hosts, new ArrayList<UUID>(), 2); InetAddress toRemove = hosts.get(1); - SystemKeyspace.updatePeerInfo(toRemove, "data_center", "'dc42'"); - SystemKeyspace.updatePeerInfo(toRemove, "rack", "'rack42'"); - assertEquals("rack42", SystemKeyspace.loadDcRackInfo().get(toRemove).get("rack")); + SystemTable.updatePeerInfo(toRemove, "data_center", "'dc42'"); + SystemTable.updatePeerInfo(toRemove, "rack", "'rack42'"); + assertEquals("rack42", SystemTable.loadDcRackInfo().get(toRemove).get("rack")); // mark the node as removed Gossiper.instance.injectApplicationState(toRemove, ApplicationState.STATUS, @@ -678,7 +678,7 @@ public class LeaveAndBootstrapTest // state changes made after the endpoint has left should be ignored ss.onChange(hosts.get(1), ApplicationState.RACK, valueFactory.rack("rack9999")); - assertEquals("rack42", SystemKeyspace.loadDcRackInfo().get(toRemove).get("rack")); + assertEquals("rack42", SystemTable.loadDcRackInfo().get(toRemove).get("rack")); } private static Collection<InetAddress> makeAddrs(String... hosts) throws UnknownHostException
