summaryrefslogtreecommitdiff
path: root/git/test/test_git.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/test/test_git.py')
-rw-r--r--git/test/test_git.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/git/test/test_git.py b/git/test/test_git.py
index cdea1d3e..7132aa83 100644
--- a/git/test/test_git.py
+++ b/git/test/test_git.py
@@ -18,8 +18,8 @@ from git import ( Git,
class TestGit(TestBase):
@classmethod
- def setUp(cls):
- super(TestGit, cls).setUp()
+ def setUpClass(cls):
+ super(TestGit, cls).setUpClass()
cls.git = Git(cls.rorepo.working_dir)
@patch.object(Git, 'execute')