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 2012/01/20 16:31:30 UTC

svn commit: r1233957 - /incubator/accumulo/branches/1.4/src/core/src/test/java/org/apache/accumulo/core/client/admin/TableOperationsHelperTest.java

Author: billie
Date: Fri Jan 20 15:31:30 2012
New Revision: 1233957

URL: http://svn.apache.org/viewvc?rev=1233957&view=rev
Log:
ACCUMULO-311 removed unneeded print statement

Modified:
    incubator/accumulo/branches/1.4/src/core/src/test/java/org/apache/accumulo/core/client/admin/TableOperationsHelperTest.java

Modified: incubator/accumulo/branches/1.4/src/core/src/test/java/org/apache/accumulo/core/client/admin/TableOperationsHelperTest.java
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/src/core/src/test/java/org/apache/accumulo/core/client/admin/TableOperationsHelperTest.java?rev=1233957&r1=1233956&r2=1233957&view=diff
==============================================================================
--- incubator/accumulo/branches/1.4/src/core/src/test/java/org/apache/accumulo/core/client/admin/TableOperationsHelperTest.java (original)
+++ incubator/accumulo/branches/1.4/src/core/src/test/java/org/apache/accumulo/core/client/admin/TableOperationsHelperTest.java Fri Jan 20 15:31:30 2012
@@ -224,7 +224,6 @@ public class TableOperationsHelperTest {
     Map<String,EnumSet<IteratorScope>> two = t.listIterators("table");
     Assert.assertEquals(2, two.size());
     Assert.assertTrue(two.containsKey("otherName"));
-    System.out.println(two.get("otherName"));
     Assert.assertTrue(two.get("otherName").size() == 2);
     Assert.assertTrue(two.get("otherName").contains(IteratorScope.majc));
     Assert.assertTrue(two.get("otherName").contains(IteratorScope.scan));