| Index: tests/gclient_utils_test.py
|
| diff --git a/tests/gclient_utils_test.py b/tests/gclient_utils_test.py
|
| index cbe91fa888eb02702393d54c116a21dac306f869..c769e2093614eb650cef33761773d027dea3ac97 100644
|
| --- a/tests/gclient_utils_test.py
|
| +++ b/tests/gclient_utils_test.py
|
| @@ -32,6 +32,7 @@ class CheckCallTestCase(SuperMoxTestBase):
|
| process.returncode = 0
|
| gclient_utils.subprocess.Popen(
|
| command, cwd=None,
|
| + stderr=None,
|
| stdout=gclient_utils.subprocess.PIPE,
|
| shell=gclient_utils.sys.platform.startswith('win')).AndReturn(process)
|
| process.communicate().AndReturn(['bleh'])
|
| @@ -44,6 +45,7 @@ class CheckCallTestCase(SuperMoxTestBase):
|
| process.returncode = 42
|
| gclient_utils.subprocess.Popen(
|
| command, cwd=None,
|
| + stderr=None,
|
| stdout=gclient_utils.subprocess.PIPE,
|
| shell=gclient_utils.sys.platform.startswith('win')).AndReturn(process)
|
| process.communicate().AndReturn(['bleh'])
|
|
|