1818
1919
2020@pytest .mark .parametrize (
21- "test_input, expected" ,
21+ ( "test_input" , " expected") ,
2222 [
2323 ("my-mailing-list@example.com" , "my-mailing-list@example.com" ),
2424 ("python-tulip@googlegroups.com" , "https://groups.google.com/g/python-tulip" ),
@@ -37,7 +37,7 @@ def test_generate_list_url(test_input, expected):
3737
3838
3939@pytest .mark .parametrize (
40- "test_input, expected" ,
40+ ( "test_input" , " expected") ,
4141 [
4242 (
4343 "https://mail.python.org/pipermail/python-3000/2006-November/004190.html" ,
@@ -72,7 +72,7 @@ def test_process_pretty_url(test_input, expected):
7272
7373
7474@pytest .mark .parametrize (
75- "test_input, expected" ,
75+ ( "test_input" , " expected") ,
7676 [
7777 (
7878 "https://example.com/" ,
@@ -94,7 +94,7 @@ def test_process_pretty_url_invalid(test_input, expected):
9494
9595
9696@pytest .mark .parametrize (
97- "test_input, expected" ,
97+ ( "test_input" , " expected") ,
9898 [
9999 (
100100 "https://mail.python.org/pipermail/python-3000/2006-November/004190.html" ,
@@ -129,7 +129,7 @@ def test_make_link_pretty(test_input, expected):
129129
130130
131131@pytest .mark .parametrize (
132- "test_input, expected" ,
132+ ( "test_input" , " expected") ,
133133 [
134134 (STATUS_ACCEPTED , "Normative proposal accepted for implementation" ),
135135 (STATUS_ACTIVE , "Currently valid informational guidance, or an in-use process" ),
@@ -155,7 +155,7 @@ def test_abbreviate_status_unknown():
155155
156156
157157@pytest .mark .parametrize (
158- "test_input, expected" ,
158+ ( "test_input" , " expected") ,
159159 [
160160 (
161161 TYPE_INFO ,
0 commit comments