summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <sthiel@thoughtworks.com>2019-07-06 10:48:48 +0800
committerSebastian Thiel <sthiel@thoughtworks.com>2019-07-06 10:48:48 +0800
commit33f2526ba04997569f4cf88ad263a3005220885e (patch)
treece47d6816a68585960fefc04ca361aa37acbfa1b
parentc282315f0b533c3790494767d1da23aaa9d360b9 (diff)
downloadgitpython-33f2526ba04997569f4cf88ad263a3005220885e.tar.gz
Satisfy flake8
Oh how much I dislike linters that don't format, and a lack of formatter integration into my IDE :(.
-rw-r--r--git/test/test_util.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/git/test/test_util.py b/git/test/test_util.py
index 3f5e4abe..b5f9d222 100644
--- a/git/test/test_util.py
+++ b/git/test/test_util.py
@@ -215,7 +215,8 @@ class TestUtils(TestBase):
def test_actor_from_string(self):
self.assertEqual(Actor._from_string("name"), Actor("name", None))
self.assertEqual(Actor._from_string("name <>"), Actor("name", ""))
- self.assertEqual(Actor._from_string("name last another <some-very-long-email@example.com>"), Actor("name last another", "some-very-long-email@example.com"))
+ self.assertEqual(Actor._from_string("name last another <some-very-long-email@example.com>"),
+ Actor("name last another", "some-very-long-email@example.com"))
@ddt.data(('name', ''), ('name', 'prefix_'))
def test_iterable_list(self, case):