summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--morphlib/localrepocache_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/localrepocache_tests.py b/morphlib/localrepocache_tests.py
index 55a74a59..f221b9ee 100644
--- a/morphlib/localrepocache_tests.py
+++ b/morphlib/localrepocache_tests.py
@@ -44,7 +44,7 @@ class LocalRepoCacheTests(unittest.TestCase):
self.lrc._mkdir = self.fake_mkdir
self.lrc._remove = self.fake_remove
- def fake_git(self, args):
+ def fake_git(self, args, cwd=None):
if args[0] == 'clone':
self.assertEqual(len(args), 3)
remote = args[1]