| Index: tests/scm_unittest.py
|
| diff --git a/tests/scm_unittest.py b/tests/scm_unittest.py
|
| index ac1e340264efe1b9491c886983e90fc21c281b8b..b5ea9ba236761e54d132e71aa72824cd466d0952 100755
|
| --- a/tests/scm_unittest.py
|
| +++ b/tests/scm_unittest.py
|
| @@ -316,9 +316,9 @@ class SVNTestCase(BaseSCMTestCase):
|
| def testRun(self):
|
| param2 = 'bleh'
|
| scm.gclient_utils.SubprocessCall(['svn', 'foo', 'bar'],
|
| - param2).AndReturn(None)
|
| + cwd=param2).AndReturn(None)
|
| self.mox.ReplayAll()
|
| - scm.SVN.Run(['foo', 'bar'], param2)
|
| + scm.SVN.Run(['foo', 'bar'], cwd=param2)
|
|
|
| def testCaptureStatusEmpty(self):
|
| text = r"""<?xml version="1.0"?>
|
|
|