t9000-addresses: update expected results after fix

e3fdbcc8e1 (parse_mailboxes: accept extra text after <...> address, 2016-10-13) improved our in-house address parser and made it closer to Mail::Address. As a consequence, some tests comparing it to Mail::Address now pass, but e3fdbcc8e1 forgot to update the test. Signed-off-by: Matthieu Moy <Matthieu.Moy@imag.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Matthieu Moy committed Oct 21, 2016 at 11:20 UTC 8a420edbd2cbe43354f03243aacd4000c0ed9cfe
1 file changed +4 -4
t/t9000/test.pl
+4 -4
@@ -32,15 +32,15 @@ my @success_list = (q[Jane],
32 q["Jane\" Doe" <jdoe@example.com>],
33 q[Doe, jane <jdoe@example.com>],
34 q["Jane Doe <jdoe@example.com>],
35 - q['Jane 'Doe' <jdoe@example.com>]);
35 + q['Jane 'Doe' <jdoe@example.com>],
36 + q[Jane@:;\.,()<>Doe <jdoe@example.com>],
37 + q[Jane <jdoe@example.com> Doe],
38 + q[<jdoe@example.com> Jane Doe]);
39
40 my @known_failure_list = (q[Jane\ Doe <jdoe@example.com>],
41 q["Doe, Ja"ne <jdoe@example.com>],
42 q["Doe, Katarina" Jane <jdoe@example.com>],
40 - q[Jane@:;\.,()<>Doe <jdoe@example.com>],
43 q[Jane jdoe@example.com],
42 - q[<jdoe@example.com> Jane Doe],
43 - q[Jane <jdoe@example.com> Doe],
44 q["Jane "Kat"a" ri"na" ",Doe" <jdoe@example.com>],
45 q[Jane Doe],
46 q[Jane "Doe <jdoe@example.com>"],