8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 146cbda commit 3cb7ecfCopy full SHA for 3cb7ecf
test/test_commit.py
@@ -515,8 +515,12 @@ def test_commit_co_authors(self):
515
commit.message = """Commit message
516
517
Co-authored-by: Test User 1 <602352+test@users.noreply.github.com>
518
-Co-authored-by: test_user_2 <another_user-email@.github.com>"""
+Co-authored-by: test_user_2 <another_user-email@github.com>
519
+Co_authored_by: test_user_x <test@github.com>
520
+Co-authored-by: test_user_y <poorly formatted email @github.com>
521
+Co-authored-by: test_user_3 <test_user_3@github.com>"""
522
assert commit.co_authors == [
523
Actor("Test User 1", "602352+test@users.noreply.github.com"),
- Actor("test_user_2", "another_user-email@.github.com"),
524
+ Actor("test_user_2", "another_user-email@github.com"),
525
+ Actor("test_user_3", "test_user_3@github.com"),
526
]
0 commit comments