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@xxxxxxx> --- t/t9000/test.pl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/t/t9000/test.pl b/t/t9000/test.pl index 2d05d3eeab..dfeaa9c655 100755 --- a/t/t9000/test.pl +++ b/t/t9000/test.pl @@ -32,15 +32,15 @@ my @success_list = (q[Jane], q["Jane\" Doe" <jdoe@xxxxxxxxxxx>], q[Doe, jane <jdoe@xxxxxxxxxxx>], q["Jane Doe <jdoe@xxxxxxxxxxx>], - q['Jane 'Doe' <jdoe@xxxxxxxxxxx>]); + q['Jane 'Doe' <jdoe@xxxxxxxxxxx>], + q[Jane@:;\.,()<>Doe <jdoe@xxxxxxxxxxx>], + q[Jane <jdoe@xxxxxxxxxxx> Doe], + q[<jdoe@xxxxxxxxxxx> Jane Doe]); my @known_failure_list = (q[Jane\ Doe <jdoe@xxxxxxxxxxx>], q["Doe, Ja"ne <jdoe@xxxxxxxxxxx>], q["Doe, Katarina" Jane <jdoe@xxxxxxxxxxx>], - q[Jane@:;\.,()<>Doe <jdoe@xxxxxxxxxxx>], q[Jane jdoe@xxxxxxxxxxx], - q[<jdoe@xxxxxxxxxxx> Jane Doe], - q[Jane <jdoe@xxxxxxxxxxx> Doe], q["Jane "Kat"a" ri"na" ",Doe" <jdoe@xxxxxxxxxxx>], q[Jane Doe], q[Jane "Doe <jdoe@xxxxxxxxxxx>"], -- 2.10.1.651.gffd0de0