diff options
| author | Sebastian Thiel <byronimo@gmail.com> | 2011-05-06 15:03:14 +0200 |
|---|---|---|
| committer | Sebastian Thiel <byronimo@gmail.com> | 2011-05-06 15:03:14 +0200 |
| commit | acf5e6ea64a2f24117f1d419c208ed1c38c43690 (patch) | |
| tree | 75dedc18137297829e84f3a151130a589c3d844b /git/test/db/lib.py | |
| parent | 56da804ff295a05a38dc2cc73755706ea756fc52 (diff) | |
| download | GitPython-acf5e6ea64a2f24117f1d419c208ed1c38c43690.tar.gz GitPython-acf5e6ea64a2f24117f1d419c208ed1c38c43690.zip | |
replaced all gitdb strings with git
Diffstat (limited to 'git/test/db/lib.py')
| -rw-r--r-- | git/test/db/lib.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/git/test/db/lib.py b/git/test/db/lib.py index 5f4f9c36..bd230eda 100644 --- a/git/test/db/lib.py +++ b/git/test/db/lib.py @@ -3,7 +3,7 @@ # This module is part of GitDB and is released under # the New BSD License: http://www.opensource.org/licenses/bsd-license.php """Base classes for object db testing""" -from gitdb.test.lib import ( +from git.test.lib import ( with_rw_directory, with_packs_rw, ZippedStoreShaWriter, @@ -11,20 +11,20 @@ from gitdb.test.lib import ( TestBase ) -from gitdb.stream import Sha1Writer +from git.stream import Sha1Writer # import database types we want to support # they will be set to None if the respective library could not be loaded -from gitdb.db.py import PureGitDB +from git.db.py import PureGitDB -from gitdb.base import ( +from git.base import ( IStream, OStream, OInfo ) -from gitdb.exc import BadObject -from gitdb.typ import str_blob_type +from git.exc import BadObject +from git.typ import str_blob_type from async import IteratorReader from cStringIO import StringIO |
