Rev 5276: Fix typo. in file:///home/vila/src/bzr/experimental/leaking-tests/
Vincent Ladeuil
v.ladeuil+lp at free.fr
Thu Jun 10 18:22:53 BST 2010
At file:///home/vila/src/bzr/experimental/leaking-tests/
------------------------------------------------------------
revno: 5276
revision-id: v.ladeuil+lp at free.fr-20100610172253-6js8txv5961ln0yw
parent: v.ladeuil+lp at free.fr-20100602115158-a4qiivtgkshtip1n
committer: Vincent Ladeuil <v.ladeuil+lp at free.fr>
branch nick: cleanup
timestamp: Thu 2010-06-10 19:22:53 +0200
message:
Fix typo.
-------------- next part --------------
=== modified file 'bzrlib/tests/__init__.py'
--- a/bzrlib/tests/__init__.py 2010-05-31 21:24:27 +0000
+++ b/bzrlib/tests/__init__.py 2010-06-10 17:22:53 +0000
@@ -3315,11 +3315,11 @@
'--subunit']
if '--no-plugins' in sys.argv:
argv.append('--no-plugins')
- # stderr=subrocess.STDOUT would be ideal, but until we prevent
+ # stderr=subprocess.STDOUT would be ideal, but until we prevent
# noise on stderr it can interrupt the subunit protocol.
- process = subrocess.Popen(argv, stdin=subrocess.PIPE,
- stdout=subrocess.PIPE,
- stderr=subrocess.PIPE,
+ process = subprocess.Popen(argv, stdin=subprocess.PIPE,
+ stdout=subprocess.PIPE,
+ stderr=subprocess.PIPE,
bufsize=1)
test = TestInSubprocess(process, test_list_file_name)
result.append(test)
More information about the bazaar-commits
mailing list