diff options
author | Michael Trier <mtrier@gmail.com> | 2008-05-07 20:56:26 -0400 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2008-05-07 20:56:26 -0400 |
commit | 933d23bf95a5bd1624fbcdf328d904e1fa173474 (patch) | |
tree | cecac8c5d77669ace6745579afe489fac540a9ef /test/git/test_blob.py | |
parent | 1f66cfbbce58b4b552b041707a12d437cc5f400a (diff) | |
download | gitpython-933d23bf95a5bd1624fbcdf328d904e1fa173474.tar.gz |
cleaned up a bunch of imports for the tests.
Diffstat (limited to 'test/git/test_blob.py')
-rw-r--r-- | test/git/test_blob.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/git/test_blob.py b/test/git/test_blob.py index 7091136b..f41429a6 100644 --- a/test/git/test_blob.py +++ b/test/git/test_blob.py @@ -1,8 +1,8 @@ import time from mock import * -from gitalicious.test.asserts import * -from gitalicious.lib import * -from gitalicious.test.helper import * +from test.asserts import * +from git_python import * +from test.helper import * class TestBlob(object): def setup(self): |