diff options
author | Michael Trier <mtrier@gmail.com> | 2008-05-18 16:56:55 -0400 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2008-05-18 16:56:55 -0400 |
commit | d7e59d3ef86beb3b3b3e53a610af122b2220841b (patch) | |
tree | 918020d1c68249c74bb0e7e6efda9b90a6605123 /test/git/test_repo.py | |
parent | 0651f0964ba5a33257ebbda1e92c7a1649a4a058 (diff) | |
download | gitpython-d7e59d3ef86beb3b3b3e53a610af122b2220841b.tar.gz |
added in note about how to handle date time information. Fixed up repo tests for the removal of the shared option.
Diffstat (limited to 'test/git/test_repo.py')
-rw-r--r-- | test/git/test_repo.py | 4 |
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') |