You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2014/01/24 16:58:06 UTC

[2/6] git commit: ACCUMULO-2235 Replace the create/delete table calls with the notable "notable" command.

ACCUMULO-2235 Replace the create/delete table calls with the notable "notable" command.


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/6989d99f
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/6989d99f
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/6989d99f

Branch: refs/heads/1.6.0-SNAPSHOT
Commit: 6989d99f193ded70f7f5c7443d7fed2d08b2572b
Parents: b85c8b5
Author: Josh Elser <el...@apache.org>
Authored: Fri Jan 24 10:45:47 2014 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Fri Jan 24 10:46:29 2014 -0500

----------------------------------------------------------------------
 test/src/test/java/org/apache/accumulo/test/ShellServerTest.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/6989d99f/test/src/test/java/org/apache/accumulo/test/ShellServerTest.java
----------------------------------------------------------------------
diff --git a/test/src/test/java/org/apache/accumulo/test/ShellServerTest.java b/test/src/test/java/org/apache/accumulo/test/ShellServerTest.java
index 80e56d9..52fdd53 100644
--- a/test/src/test/java/org/apache/accumulo/test/ShellServerTest.java
+++ b/test/src/test/java/org/apache/accumulo/test/ShellServerTest.java
@@ -246,8 +246,7 @@ public class ShellServerTest {
   @Test(timeout = 30000)
   public void du() throws Exception {
     // create and delete a table so we get out of a table context in the shell
-    exec("createtable du_test_table", true);
-    exec("deletetable -f du_test_table", true);
+    exec("notable", true);
 
     // Calling du not in a table context shouldn't throw an error
     output.clear();