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_repo.py | |
| parent | 56da804ff295a05a38dc2cc73755706ea756fc52 (diff) | |
| download | GitPython-acf5e6ea64a2f24117f1d419c208ed1c38c43690.tar.gz GitPython-acf5e6ea64a2f24117f1d419c208ed1c38c43690.zip | |
replaced all gitdb strings with git
Diffstat (limited to 'git/test/test_repo.py')
| -rw-r--r-- | git/test/test_repo.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/test/test_repo.py b/git/test/test_repo.py index deadbe9a..9225040f 100644 --- a/git/test/test_repo.py +++ b/git/test/test_repo.py @@ -7,7 +7,7 @@ from git.test.lib import * from git import * from git.util import join_path_native from git.exc import BadObject -from gitdb.util import hex_to_bin, bin_to_hex +from git.util import hex_to_bin, bin_to_hex import os, sys import tempfile @@ -589,7 +589,7 @@ class TestRepo(TestBase): assert len(self.rorepo.submodules) == 1 # non-recursive assert len(list(self.rorepo.iter_submodules())) == 2 - assert isinstance(self.rorepo.submodule("gitdb"), Submodule) + assert isinstance(self.rorepo.submodule("git"), Submodule) self.failUnlessRaises(ValueError, self.rorepo.submodule, "doesn't exist") @with_rw_repo('HEAD', bare=False) |
