diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-06-03 23:27:09 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-06-03 23:27:09 +0200 |
commit | 1906ee4df9ae4e734288c5203cf79894dff76cab (patch) | |
tree | 548e3ef237d7e2d2c2c558f69460bad750e16db9 /test/git/performance/lib.py | |
parent | 1e2b46138ba58033738a24dadccc265748fce2ca (diff) | |
download | gitpython-1906ee4df9ae4e734288c5203cf79894dff76cab.tar.gz |
Fixed compatability issues with python 2.5, made sure all tests run
Diffstat (limited to 'test/git/performance/lib.py')
-rw-r--r-- | test/git/performance/lib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/git/performance/lib.py b/test/git/performance/lib.py index 650bea82..7d2a9f4a 100644 --- a/test/git/performance/lib.py +++ b/test/git/performance/lib.py @@ -60,6 +60,6 @@ class TestBigRepoRW(TestBigRepoR): @classmethod def tearDownAll(cls): - shutil.rmtree(cls.gitrwrepo.working_tree_dir) + shutil.rmtree(cls.gitrwrepo.working_dir) #} END base classes |