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/04/22 21:29:59 UTC

svn commit: r1470671 - /accumulo/branches/1.5/test/system/auto/stress/metadataMaxFiles.py

Author: ecn
Date: Mon Apr 22 19:29:59 2013
New Revision: 1470671

URL: http://svn.apache.org/r1470671
Log:
ACCUMULO-1211 new format breaks functional test

Modified:
    accumulo/branches/1.5/test/system/auto/stress/metadataMaxFiles.py

Modified: accumulo/branches/1.5/test/system/auto/stress/metadataMaxFiles.py
URL: http://svn.apache.org/viewvc/accumulo/branches/1.5/test/system/auto/stress/metadataMaxFiles.py?rev=1470671&r1=1470670&r2=1470671&view=diff
==============================================================================
--- accumulo/branches/1.5/test/system/auto/stress/metadataMaxFiles.py (original)
+++ accumulo/branches/1.5/test/system/auto/stress/metadataMaxFiles.py Mon Apr 22 19:29:59 2013
@@ -54,7 +54,7 @@ class MetadataMaxFiles(TestUtilsMixin, u
         h = self.runOn(self.masterHost(),
                        [self.accumulo_sh(), 'org.apache.accumulo.test.GetMasterStats'])
         out, err = h.communicate()
-        self.assert_(len([x for x in out.split('\n') if x.find('  Tablets 1001') == 0]) == 5)
+        self.assert_(len([x for x in out.split('\n') if x.find('  Tablets: 1001') == 0]) == 5)
 
     def tearDown(self):
         TestUtilsMixin.tearDown(self)