diff options
Diffstat (limited to 'git/test/db/dulwich/lib.py')
-rw-r--r-- | git/test/db/dulwich/lib.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/git/test/db/dulwich/lib.py b/git/test/db/dulwich/lib.py index 56734064..a58469f1 100644 --- a/git/test/db/dulwich/lib.py +++ b/git/test/db/dulwich/lib.py @@ -1,23 +1,23 @@ """dulwich specific utilities, as well as all the default ones""" from git.test.lib import ( - InheritedTestMethodsOverrideWrapperMetaClsAutoMixin, - needs_module_or_skip - ) + InheritedTestMethodsOverrideWrapperMetaClsAutoMixin, + needs_module_or_skip + ) __all__ = ['needs_dulwich_or_skip', 'DulwichRequiredMetaMixin'] #{ Decoorators def needs_dulwich_or_skip(func): - """Skip this test if we have no dulwich - print warning""" - return needs_module_or_skip('dulwich')(func) + """Skip this test if we have no dulwich - print warning""" + return needs_module_or_skip('dulwich')(func) #}END decorators #{ MetaClasses class DulwichRequiredMetaMixin(InheritedTestMethodsOverrideWrapperMetaClsAutoMixin): - decorator = [needs_dulwich_or_skip] + decorator = [needs_dulwich_or_skip] #} END metaclasses |