summaryrefslogtreecommitdiff
path: root/morphlib/localrepocache_tests.py
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-04-11 13:15:50 +0100
committerRichard Maw <richard.maw@codethink.co.uk>2012-04-11 13:15:50 +0100
commitd1f60363d74a579ee8eee22e0b03494d63dee830 (patch)
tree1d0abf874d839e54460c7a2410c96e32c28fe9c9 /morphlib/localrepocache_tests.py
parentc1e88e28a335b75e6911a5640e326b4e6d34569d (diff)
downloadmorph-d1f60363d74a579ee8eee22e0b03494d63dee830.tar.gz
localrepocache tests: fake_git accept cwd
Diffstat (limited to 'morphlib/localrepocache_tests.py')
-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]