summaryrefslogtreecommitdiff
path: root/git/test/performance/test_streams.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2011-05-06 15:03:14 +0200
committerSebastian Thiel <byronimo@gmail.com>2011-05-06 15:03:14 +0200
commitacf5e6ea64a2f24117f1d419c208ed1c38c43690 (patch)
tree75dedc18137297829e84f3a151130a589c3d844b /git/test/performance/test_streams.py
parent56da804ff295a05a38dc2cc73755706ea756fc52 (diff)
downloadgitpython-acf5e6ea64a2f24117f1d419c208ed1c38c43690.tar.gz
replaced all gitdb strings with git
Diffstat (limited to 'git/test/performance/test_streams.py')
-rw-r--r--git/test/performance/test_streams.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/git/test/performance/test_streams.py b/git/test/performance/test_streams.py
index 196e9003..f63d922d 100644
--- a/git/test/performance/test_streams.py
+++ b/git/test/performance/test_streams.py
@@ -1,15 +1,15 @@
"""Performance data streaming performance"""
-from gitdb.db.py import *
-from gitdb.base import *
-from gitdb.stream import *
-from gitdb.util import (
+from git.db.py import *
+from git.base import *
+from git.stream import *
+from git.util import (
pool,
bin_to_hex
)
from git.test.lib import *
-from gitdb import *
-from gitdb.util import bin_to_hex
+from git import *
+from git.util import bin_to_hex
from cStringIO import StringIO
from time import time
@@ -18,7 +18,7 @@ import sys
import stat
import subprocess
-from gitdb.test.lib import make_memory_file
+from git.test.lib import make_memory_file
from lib import (
TestBigRepoR
@@ -58,7 +58,7 @@ class TestObjDBPerformance(TestBigRepoR):
@with_rw_repo('HEAD', bare=True)
def test_large_data_streaming(self, rwrepo):
- # TODO: This part overlaps with the same file in gitdb.test.performance.test_stream
+ # TODO: This part overlaps with the same file in git.test.performance.test_stream
# It should be shared if possible
ldb = LooseObjectDB(os.path.join(rwrepo.git_dir, 'objects'))