From 33f2526ba04997569f4cf88ad263a3005220885e Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Sat, 6 Jul 2019 10:48:48 +0800 Subject: Satisfy flake8 Oh how much I dislike linters that don't format, and a lack of formatter integration into my IDE :(. --- git/test/test_util.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'git') 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 "), Actor("name last another", "some-very-long-email@example.com")) + self.assertEqual(Actor._from_string("name last another "), + Actor("name last another", "some-very-long-email@example.com")) @ddt.data(('name', ''), ('name', 'prefix_')) def test_iterable_list(self, case): -- cgit v1.2.1