summaryrefslogtreecommitdiff
path: root/git/test/db/dulwich/test_base.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/test/db/dulwich/test_base.py')
-rw-r--r--git/test/db/dulwich/test_base.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/git/test/db/dulwich/test_base.py b/git/test/db/dulwich/test_base.py
index ed2f8975..82713103 100644
--- a/git/test/db/dulwich/test_base.py
+++ b/git/test/db/dulwich/test_base.py
@@ -7,7 +7,6 @@ from git.test.lib import TestBase, with_rw_repo
from git.test.db.base import RepoBase
-
try:
import dulwich
except ImportError:
@@ -17,16 +16,15 @@ except ImportError:
else:
# now we know dulwich is available, to do futher imports
from git.db.dulwich.complex import DulwichCompatibilityGitDB as DulwichDB
-
-#END handle imports
+
+# END handle imports
+
class TestDulwichDBBase(RepoBase):
__metaclass__ = DulwichRequiredMetaMixin
RepoCls = DulwichDB
-
+
@needs_dulwich_or_skip
@with_rw_repo('HEAD', bare=False)
def test_basics(self, rw_repo):
db = DulwichDB(rw_repo.working_tree_dir)
-
-