summaryrefslogtreecommitdiff
path: root/git
diff options
context:
space:
mode:
Diffstat (limited to 'git')
-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):