Updated Branches: refs/heads/1.6.0-SNAPSHOT 3ec25dbe5 -> f228caff4
ACCUMULO-2025 - splitting the tests caused duplicate tables being used. They now use unique tables and namespaces Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/3743312d Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/3743312d Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/3743312d Branch: refs/heads/1.6.0-SNAPSHOT Commit: 3743312d6369ff52691fdca03cb4338972823255 Parents: 3ec25db Author: John Vines <[email protected]> Authored: Wed Dec 18 15:48:26 2013 -0500 Committer: John Vines <[email protected]> Committed: Wed Dec 18 15:48:26 2013 -0500 ---------------------------------------------------------------------- test/src/test/java/org/apache/accumulo/test/NamespacesIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/3743312d/test/src/test/java/org/apache/accumulo/test/NamespacesIT.java ---------------------------------------------------------------------- diff --git a/test/src/test/java/org/apache/accumulo/test/NamespacesIT.java b/test/src/test/java/org/apache/accumulo/test/NamespacesIT.java index d00334a..c4adb64 100644 --- a/test/src/test/java/org/apache/accumulo/test/NamespacesIT.java +++ b/test/src/test/java/org/apache/accumulo/test/NamespacesIT.java @@ -316,7 +316,7 @@ public class NamespacesIT extends SimpleMacIT { public void testNamespaceConstraints() throws Exception { Connector c = getConnector(); - String namespace = "iterator"; + String namespace = "constraint"; String tableName = namespace + ".table"; String iter = "thing";
