Index: tests/gclient_utils_test.py |
diff --git a/tests/gclient_utils_test.py b/tests/gclient_utils_test.py |
index 4bbc0b9f69a29186aa3e3f3bf0dec6ef8b629fe5..58864635dc2fed9ac66b7d0f5d5c441a01fb28e1 100644 |
--- a/tests/gclient_utils_test.py |
+++ b/tests/gclient_utils_test.py |
@@ -35,7 +35,7 @@ class CheckCallTestCase(SuperMoxTestBase): |
stderr=None, |
stdout=gclient_utils.subprocess.PIPE, |
shell=gclient_utils.sys.platform.startswith('win')).AndReturn(process) |
- process.communicate().AndReturn(['bleh']) |
+ process.communicate().AndReturn(['bleh', 'foo']) |
self.mox.ReplayAll() |
gclient_utils.CheckCall(command) |
@@ -48,7 +48,7 @@ class CheckCallTestCase(SuperMoxTestBase): |
stderr=None, |
stdout=gclient_utils.subprocess.PIPE, |
shell=gclient_utils.sys.platform.startswith('win')).AndReturn(process) |
- process.communicate().AndReturn(['bleh']) |
+ process.communicate().AndReturn(['bleh', 'foo']) |
self.mox.ReplayAll() |
try: |
gclient_utils.CheckCall(command) |
@@ -58,6 +58,7 @@ class CheckCallTestCase(SuperMoxTestBase): |
self.assertEqual(e.cwd, None) |
self.assertEqual(e.retcode, 42) |
self.assertEqual(e.stdout, 'bleh') |
+ self.assertEqual(e.stderr, 'foo') |
class SubprocessCallAndFilterTestCase(SuperMoxTestBase): |