summaryrefslogtreecommitdiff
path: root/git/test/performance/lib.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2011-06-06 16:55:57 +0200
committerSebastian Thiel <byronimo@gmail.com>2011-06-06 16:55:57 +0200
commitd1032572162f91ee9e67e74321f329238fa32b15 (patch)
tree8183c05462c0cadf9e02b6605fbffcb82e43b2d6 /git/test/performance/lib.py
parent5426890ebd5a54fdc450f977137511bbd52f200e (diff)
downloadgitpython-d1032572162f91ee9e67e74321f329238fa32b15.tar.gz
Fixed packed ODB test, in preparation for separating the type to allow future implementations to use the test as well
Diffstat (limited to 'git/test/performance/lib.py')
-rw-r--r--git/test/performance/lib.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/git/test/performance/lib.py b/git/test/performance/lib.py
index cf80a0de..c92b0eea 100644
--- a/git/test/performance/lib.py
+++ b/git/test/performance/lib.py
@@ -7,6 +7,8 @@ from git.test.lib import (
import shutil
import tempfile
+from git import Repo
+
#{ Invvariants
k_env_git_repo = "GIT_PYTHON_TEST_GIT_REPO_BASE"
#} END invariants
@@ -41,7 +43,7 @@ class TestBigRepoR(TestBase):
#} END invariants
#{ Configuration
- RepoCls = None
+ RepoCls = Repo
#} END configuration
@classmethod