diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2014-02-10 21:27:26 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2014-02-10 21:27:26 +0100 |
commit | f77230f618722e964a76657ebb03d822b2f73518 (patch) | |
tree | 51130c659e5089434e84404940ed1451f6c5d5cc /git/test/performance/lib.py | |
parent | 661c2e42b43b6087e0afe96302ea34a2d7d1c1ca (diff) | |
download | gitpython-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.py | 8 |
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) |