summaryrefslogtreecommitdiff
path: root/test/git/test_repo.py
diff options
context:
space:
mode:
authorPaul J. Davis <paul.joseph.davis@gmail.com>2009-07-14 10:31:26 -0400
committerPaul J. Davis <paul.joseph.davis@gmail.com>2009-07-14 10:31:26 -0400
commitba8d148121b1dbba444849fe9549f36a7d17db28 (patch)
treefdeb03720e402b77d895e4b1f2416e74cd6dffaa /test/git/test_repo.py
parent4c39f9da792792d4e73fc3a5effde66576ae128c (diff)
downloadgitpython-ba8d148121b1dbba444849fe9549f36a7d17db28.tar.gz
Fix unittests for Mock 0.5.0
Diffstat (limited to 'test/git/test_repo.py')
-rw-r--r--test/git/test_repo.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/git/test_repo.py b/test/git/test_repo.py
index 6b82d029..ded177d3 100644
--- a/test/git/test_repo.py
+++ b/test/git/test_repo.py
@@ -116,7 +116,7 @@ class TestRepo(object):
@patch_object(Repo, '__init__')
@patch_object(Git, '_call_process')
- def test_init_bare(self, repo, git):
+ def test_init_bare(self, git, repo):
git.return_value = True
repo.return_value = None
@@ -129,7 +129,7 @@ class TestRepo(object):
@patch_object(Repo, '__init__')
@patch_object(Git, '_call_process')
- def test_init_bare_with_options(self, repo, git):
+ def test_init_bare_with_options(self, git, repo):
git.return_value = True
repo.return_value = None
@@ -142,7 +142,7 @@ class TestRepo(object):
@patch_object(Repo, '__init__')
@patch_object(Git, '_call_process')
- def test_fork_bare(self, repo, git):
+ def test_fork_bare(self, git, repo):
git.return_value = None
repo.return_value = None
@@ -155,7 +155,7 @@ class TestRepo(object):
@patch_object(Repo, '__init__')
@patch_object(Git, '_call_process')
- def test_fork_bare_with_options(self, repo, git):
+ def test_fork_bare_with_options(self, git, repo):
git.return_value = None
repo.return_value = None