You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2011/08/09 14:04:32 UTC

svn commit: r1155325 - /subversion/trunk/subversion/bindings/ctypes-python/test/wc.py

Author: julianfoad
Date: Tue Aug  9 12:04:32 2011
New Revision: 1155325

URL: http://svn.apache.org/viewvc?rev=1155325&view=rev
Log:
* subversion/bindings/ctypes-python/test/wc.py
  (__main__): Remove 'verbosity=2' that was added in r871808, apparently
    unintentionally.

Modified:
    subversion/trunk/subversion/bindings/ctypes-python/test/wc.py

Modified: subversion/trunk/subversion/bindings/ctypes-python/test/wc.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/ctypes-python/test/wc.py?rev=1155325&r1=1155324&r2=1155325&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/ctypes-python/test/wc.py (original)
+++ subversion/trunk/subversion/bindings/ctypes-python/test/wc.py Tue Aug  9 12:04:32 2011
@@ -254,5 +254,5 @@ def suite():
     return unittest.makeSuite(WCTestCase, 'test')
 
 if __name__ == '__main__':
-    runner = unittest.TextTestRunner(verbosity=2)
+    runner = unittest.TextTestRunner()
     runner.run(suite())