Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(153)

Unified Diff: tests/subprocess2_test.py

Issue 6882127: Make subprocess2.check_call() compliant with subprocess.check_call(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « subprocess2.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/subprocess2_test.py
diff --git a/tests/subprocess2_test.py b/tests/subprocess2_test.py
index c419df022da9585f1fe3e17a2ae709928c303b68..031b6d9847608a8bc559b35a5d1a341ffe91ce67 100755
--- a/tests/subprocess2_test.py
+++ b/tests/subprocess2_test.py
@@ -82,7 +82,7 @@ class Subprocess2Test(unittest.TestCase):
def test_check_call_defaults(self):
results = self._fake_communicate()
self.assertEquals(
- ['stdout', 'stderr'], subprocess2.check_call(['foo'], a=True))
+ ['stdout', 'stderr'], subprocess2.check_call_out(['foo'], a=True))
expected = {
'args': ['foo'],
'a':True,
« no previous file with comments | « subprocess2.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698