summaryrefslogtreecommitdiff
path: root/test/git/test_repo.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/git/test_repo.py')
-rw-r--r--test/git/test_repo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/git/test_repo.py b/test/git/test_repo.py
index d5971e65..52f5856d 100644
--- a/test/git/test_repo.py
+++ b/test/git/test_repo.py
@@ -135,7 +135,7 @@ class TestRepo(object):
self.repo.fork_bare("/foo/bar.git")
assert_true(git.called)
- assert_equal(git.call_args, (('clone', '%s/.git' % absolute_project_path(), '/foo/bar.git'), {'bare': True, 'shared': False}))
+ assert_equal(git.call_args, (('clone', '%s/.git' % absolute_project_path(), '/foo/bar.git'), {'bare': True}))
assert_true(repo.called)
@patch(Repo, '__init__')
@@ -147,7 +147,7 @@ class TestRepo(object):
assert_true(git.called)
assert_equal(git.call_args, (('clone', '%s/.git' % absolute_project_path(), '/foo/bar.git'),
- {'bare': True, 'shared': False, 'template': '/awesome'}))
+ {'bare': True, 'template': '/awesome'}))
assert_true(repo.called)
@patch(Git, 'method_missing')