summaryrefslogtreecommitdiff
path: root/test/git/test_repo.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/git/test_repo.py')
-rw-r--r--test/git/test_repo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/git/test_repo.py b/test/git/test_repo.py
index a6047bf5..62b4c476 100644
--- a/test/git/test_repo.py
+++ b/test/git/test_repo.py
@@ -560,7 +560,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("lib/git/ext/gitdb"), Submodule)
+ assert isinstance(self.rorepo.submodule("gitdb"), Submodule)
self.failUnlessRaises(ValueError, self.rorepo.submodule, "doesn't exist")
@with_rw_repo('HEAD', bare=False)