| Index: tests/gclient_utils_test.py
|
| diff --git a/tests/gclient_utils_test.py b/tests/gclient_utils_test.py
|
| index b81775dcec548a0cf9e0db80d2f4ed4e071cbace..ee05aae20357292c247cd61b49327f34f887344c 100755
|
| --- a/tests/gclient_utils_test.py
|
| +++ b/tests/gclient_utils_test.py
|
| @@ -43,19 +43,19 @@ class CheckCallTestCase(GclientUtilBase):
|
| process = self.mox.CreateMockAnything()
|
| process.returncode = 0
|
| gclient_utils.Popen(
|
| - args, cwd=None,
|
| + args, cwd='bar',
|
| stderr=None,
|
| stdout=gclient_utils.subprocess.PIPE).AndReturn(process)
|
| process.communicate().AndReturn(['bleh', 'foo'])
|
| self.mox.ReplayAll()
|
| - gclient_utils.CheckCall(args)
|
| + gclient_utils.CheckCall(args, cwd='bar')
|
|
|
| def testCheckCallFailure(self):
|
| args = ['boo', 'foo', 'bar']
|
| process = self.mox.CreateMockAnything()
|
| process.returncode = 42
|
| gclient_utils.Popen(
|
| - args, cwd=None,
|
| + args,
|
| stderr=None,
|
| stdout=gclient_utils.subprocess.PIPE).AndReturn(process)
|
| process.communicate().AndReturn(['bleh', 'foo'])
|
|
|