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/test_pack.py | |
parent | 56da804ff295a05a38dc2cc73755706ea756fc52 (diff) | |
download | gitpython-acf5e6ea64a2f24117f1d419c208ed1c38c43690.tar.gz |
replaced all gitdb strings with git
Diffstat (limited to 'git/test/test_pack.py')
-rw-r--r-- | git/test/test_pack.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/git/test/test_pack.py b/git/test/test_pack.py index 4a7f1caf..c398fc56 100644 --- a/git/test/test_pack.py +++ b/git/test/test_pack.py @@ -9,22 +9,22 @@ from lib import ( with_packs_rw, fixture_path ) -from gitdb.stream import DeltaApplyReader +from git.stream import DeltaApplyReader -from gitdb.pack import ( +from git.pack import ( PackEntity, PackIndexFile, PackFile ) -from gitdb.base import ( +from git.base import ( OInfo, OStream, ) -from gitdb.fun import delta_types -from gitdb.exc import UnsupportedOperation -from gitdb.util import to_bin_sha +from git.fun import delta_types +from git.exc import UnsupportedOperation +from git.util import to_bin_sha from itertools import izip, chain from nose import SkipTest |