summaryrefslogtreecommitdiff
path: root/git/test/performance/lib.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2014-02-10 21:27:26 +0100
committerSebastian Thiel <byronimo@gmail.com>2014-02-10 21:27:26 +0100
commitf77230f618722e964a76657ebb03d822b2f73518 (patch)
tree51130c659e5089434e84404940ed1451f6c5d5cc /git/test/performance/lib.py
parent661c2e42b43b6087e0afe96302ea34a2d7d1c1ca (diff)
downloadgitpython-f77230f618722e964a76657ebb03d822b2f73518.tar.gz
Basic fixes to get tests back on track. Of course there is much more work to be done here
Diffstat (limited to 'git/test/performance/lib.py')
-rw-r--r--git/test/performance/lib.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/git/test/performance/lib.py b/git/test/performance/lib.py
index c82ccb16..2772fd7d 100644
--- a/git/test/performance/lib.py
+++ b/git/test/performance/lib.py
@@ -47,8 +47,8 @@ class TestBigRepoR(TestBase):
#} END configuration
@classmethod
- def setUpAll(cls):
- super(TestBigRepoR, cls).setUpAll()
+ def setUp(cls):
+ super(TestBigRepoR, cls).setUp()
if cls.RepoCls is None:
raise AssertionError("Require RepoCls in class %s to be set" % cls)
#END assert configuration
@@ -61,8 +61,8 @@ class TestBigRepoRW(TestBigRepoR):
Provides ``self.rwrepo``"""
@classmethod
- def setUpAll(cls):
- super(TestBigRepoRW, cls).setUpAll()
+ def setUp(cls):
+ super(TestBigRepoRW, cls).setUp()
dirname = tempfile.mktemp()
os.mkdir(dirname)
cls.rwrepo = cls.rorepo.clone(dirname, shared=True, bare=True)