You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2013/03/22 16:02:34 UTC

svn commit: r1459826 - /accumulo/branches/1.5/test/src/test/java/org/apache/accumulo/test/ShellServerTest.java

Author: ecn
Date: Fri Mar 22 15:02:34 2013
New Revision: 1459826

URL: http://svn.apache.org/r1459826
Log:
ACCUMULO-581 svn commit -m toString() of Authorizations is not predictable

Modified:
    accumulo/branches/1.5/test/src/test/java/org/apache/accumulo/test/ShellServerTest.java

Modified: accumulo/branches/1.5/test/src/test/java/org/apache/accumulo/test/ShellServerTest.java
URL: http://svn.apache.org/viewvc/accumulo/branches/1.5/test/src/test/java/org/apache/accumulo/test/ShellServerTest.java?rev=1459826&r1=1459825&r2=1459826&view=diff
==============================================================================
--- accumulo/branches/1.5/test/src/test/java/org/apache/accumulo/test/ShellServerTest.java (original)
+++ accumulo/branches/1.5/test/src/test/java/org/apache/accumulo/test/ShellServerTest.java Fri Mar 22 15:02:34 2013
@@ -296,7 +296,8 @@ public class ShellServerTest {
     exec("createtable xyzzy -evc");
     exec("insert a b c d -l foo", true, "does not have authorization", true);
     exec("addauths -s foo,bar", true);
-    exec("getauths", true, "foo,bar", true);
+    exec("getauths", true, "foo", true);
+    exec("getauths", true, "bar", true);
     exec("insert a b c d -l foo");
     exec("scan", true, "[foo]");
     exec("scan -s bar", true, "[foo]", false);