aboutsummaryrefslogtreecommitdiff
path: root/git/test/db/test_ref.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/db/test_ref.py
parent56da804ff295a05a38dc2cc73755706ea756fc52 (diff)
downloadGitPython-acf5e6ea64a2f24117f1d419c208ed1c38c43690.tar.gz
GitPython-acf5e6ea64a2f24117f1d419c208ed1c38c43690.zip
replaced all gitdb strings with git
Diffstat (limited to 'git/test/db/test_ref.py')
-rw-r--r--git/test/db/test_ref.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/git/test/db/test_ref.py b/git/test/db/test_ref.py
index 330dab70..43fbb48f 100644
--- a/git/test/db/test_ref.py
+++ b/git/test/db/test_ref.py
@@ -3,9 +3,9 @@
# This module is part of GitDB and is released under
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
from lib import *
-from gitdb.db.py import PureReferenceDB
+from git.db.py import PureReferenceDB
-from gitdb.util import (
+from git.util import (
NULL_BIN_SHA,
hex_to_bin
)
@@ -44,8 +44,8 @@ class TestPureReferenceDB(TestDBBase):
assert len(rdb.databases()) == 1
# we should now find a default revision of ours
- gitdb_sha = hex_to_bin("5690fd0d3304f378754b23b098bd7cb5f4aa1976")
- assert rdb.has_object(gitdb_sha)
+ git_sha = hex_to_bin("5690fd0d3304f378754b23b098bd7cb5f4aa1976")
+ assert rdb.has_object(git_sha)
# remove valid
self.make_alt_file(alt_path, ["just/one/invalid/path"])