Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 33f2526

Browse filesBrowse 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
Copy full SHA for 33f2526

File tree

1 file changed

+2
-1
lines changed
Filter options

1 file changed

+2
-1
lines changed

‎git/test/test_util.py

Copy file name to clipboardExpand all lines: git/test/test_util.py
+2-1Lines changed: 2 additions & 1 deletion
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 <some-very-long-email@example.com>"), Actor("name last another", "some-very-long-email@example.com"))
218+
self.assertEqual(Actor._from_string("name last another <some-very-long-email@example.com>"),
219+
Actor("name last another", "some-very-long-email@example.com"))
219220

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

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.