aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2016-09-09 19:38:26 +0200
committerGuido Günther <agx@sigxcpu.org>2016-09-12 08:52:14 +0200
commit67c318ab75ef16bd4a0e9c9eb4fc5c1b7f94e012 (patch)
tree9afb26cda78e4ed78f034ea549632c810181d30d /tests
parent76d9b6a38e1cc78b960ea6026957b41dcbb7b002 (diff)
test_GitModifyer: flake8 clean
Diffstat (limited to 'tests')
-rw-r--r--tests/test_GitModifier.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/test_GitModifier.py b/tests/test_GitModifier.py
index 8e7930e8..5c3eb406 100644
--- a/tests/test_GitModifier.py
+++ b/tests/test_GitModifier.py
@@ -4,7 +4,8 @@
Test L{gbp.git.GitModifier}
"""
-from . import context
+from . import context # noqa: F401
+
def test_author():
"""
@@ -38,6 +39,7 @@ def test_author():
>>> modifier['date']
"""
+
def test_date():
"""
Methods tested:
@@ -69,6 +71,7 @@ def test_date():
'+0000'
"""
+
def test_dict():
"""
Test C{dict} interface
@@ -79,4 +82,3 @@ def test_dict():
>>> sorted(modifier.items())
[('date', '1 +0000'), ('email', 'bar'), ('name', 'foo')]
"""
-