Skip to content

Commit 33f2526

Browse files
author
Sebastian Thiel
committed
Satisfy flake8
Oh how much I dislike linters that don't format, and a lack of formatter integration into my IDE :(.
1 parent c282315 commit 33f2526

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

git/test/test_util.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,8 @@ def test_actor(self):
215215
def test_actor_from_string(self):
216216
self.assertEqual(Actor._from_string("name"), Actor("name", None))
217217
self.assertEqual(Actor._from_string("name <>"), Actor("name", ""))
218-
self.assertEqual(Actor._from_string("name last another <[email protected]>"), Actor("name last another", "[email protected]"))
218+
self.assertEqual(Actor._from_string("name last another <[email protected]>"),
219+
Actor("name last another", "[email protected]"))
219220

220221
@ddt.data(('name', ''), ('name', 'prefix_'))
221222
def test_iterable_list(self, case):

0 commit comments

Comments
 (0)