diff tests/test_single_dir_push.py @ 1343:e597714cb420 stable

tests: pass --quiet anyplace we call dispatch to run a command Without this the now-in-core progress code will fire when we run dispatch since that picks up a clean ui.ui() instance that we can't set .quiet on easily.
author Augie Fackler <raf@durin42.com>
date Tue, 11 Aug 2015 16:56:37 -0400
parents c6b01fd34694
children 0ebcc5bbf692
line wrap: on
line diff
--- a/tests/test_single_dir_push.py
+++ b/tests/test_single_dir_push.py
@@ -171,7 +171,7 @@ class TestSingleDirPush(test_util.TestBa
         # Tests pulling and pushing with a renamed branch
         # Based on test_push_single_dir
         repo_path = self.load_svndump('branch_from_tag.svndump')
-        cmd = ['clone', '--layout=single', '--branch=flaf']
+        cmd = ['clone', '--quiet', '--layout=single', '--branch=flaf']
         if self.stupid:
             cmd.append('--stupid')
         cmd += [test_util.fileurl(repo_path), self.wc_path]