From f77230f618722e964a76657ebb03d822b2f73518 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Mon, 10 Feb 2014 21:27:26 +0100 Subject: Basic fixes to get tests back on track. Of course there is much more work to be done here --- git/test/performance/lib.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'git/test/performance/lib.py') 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) -- cgit v1.2.3