diff options
author | Florian Apolloner <florian@apolloner.eu> | 2008-08-21 16:49:42 +0200 |
---|---|---|
committer | Florian Apolloner <florian@apolloner.eu> | 2008-08-21 16:49:42 +0200 |
commit | 8df638c22c75ddc9a43ecdde90c0c9939f5009e7 (patch) | |
tree | 43a63b045e538a38161c8da5e154ff1c9436ea4e /test | |
parent | a6604a00a652e754cb8b6b0b9f194f839fc38d7c (diff) | |
parent | 127e511ea2e22f3bd9a0279e747e9cfa9509986d (diff) | |
download | gitpython-8df638c22c75ddc9a43ecdde90c0c9939f5009e7.tar.gz |
Merge branch 'master' of git@gitorious.org:git-python/mainline
Diffstat (limited to 'test')
-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 e720856b..7550e1d6 100644 --- a/test/git/test_repo.py +++ b/test/git/test_repo.py @@ -120,7 +120,7 @@ class TestRepo(object): Repo.init_bare("repos/foo/bar.git") assert_true(git.called) - assert_equal(git.call_args, (('init',), {})) + assert_equal(git.call_args, (('init', '--bare'), {})) assert_true(repo.called) assert_equal(repo.call_args, (('repos/foo/bar.git',), {})) @@ -132,7 +132,7 @@ class TestRepo(object): Repo.init_bare("repos/foo/bar.git", **{'template': "/baz/sweet"}) assert_true(git.called) - assert_equal(git.call_args, (('init',), {'template': '/baz/sweet'})) + assert_equal(git.call_args, (('init', '--bare'), {'template': '/baz/sweet'})) assert_true(repo.called) assert_equal(repo.call_args, (('repos/foo/bar.git',), {})) |