You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by bi...@apache.org on 2013/04/19 23:00:26 UTC

svn commit: r1470041 - /accumulo/trunk/core/src/test/java/org/apache/accumulo/core/util/shell/ShellTest.java

Author: billie
Date: Fri Apr 19 21:00:26 2013
New Revision: 1470041

URL: http://svn.apache.org/r1470041
Log:
ACCUMULO-1314 fixed shelltest bug introduced in r1469651

Modified:
    accumulo/trunk/core/src/test/java/org/apache/accumulo/core/util/shell/ShellTest.java

Modified: accumulo/trunk/core/src/test/java/org/apache/accumulo/core/util/shell/ShellTest.java
URL: http://svn.apache.org/viewvc/accumulo/trunk/core/src/test/java/org/apache/accumulo/core/util/shell/ShellTest.java?rev=1470041&r1=1470040&r2=1470041&view=diff
==============================================================================
--- accumulo/trunk/core/src/test/java/org/apache/accumulo/core/util/shell/ShellTest.java (original)
+++ accumulo/trunk/core/src/test/java/org/apache/accumulo/core/util/shell/ShellTest.java Fri Apr 19 21:00:26 2013
@@ -155,7 +155,7 @@ public class ShellTest {
     exec("setauths -s x,y,z -u notauser", false, "user does not exist");
     exec("setauths -s y,z,x", true);
     exec("getauths -u notauser", false, "user does not exist");
-    exec("getauths", true, "y,z,x");
+    exec("getauths", true, "x,y,z");
     exec("addauths -u notauser", false, "Missing required option");
     exec("addauths -u notauser -s foo", false, "user does not exist");
     exec("addauths -s a", true);