From d7e59d3ef86beb3b3b3e53a610af122b2220841b Mon Sep 17 00:00:00 2001 From: Michael Trier Date: Sun, 18 May 2008 16:56:55 -0400 Subject: added in note about how to handle date time information. Fixed up repo tests for the removal of the shared option. --- test/git/test_repo.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/git/test_repo.py') 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') -- cgit v1.2.1