From b19c79c6a787f80aa334b117a68454c53ac93309 Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Tue, 7 Apr 2020 14:49:11 +0200 Subject: [PATCH] Test was locale dependent. Corrected that. Issue #102. (#103) --- t/idn.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/idn.t b/t/idn.t index e29abe77..86c16c7b 100644 --- a/t/idn.t +++ b/t/idn.t @@ -25,6 +25,6 @@ is_deeply( 'Many encoded right' ); -like( exception { to_idn( "ö" x 63 ) }, qr/Punycode/, 'Boom today' ); +like( exception { to_idn( "ö" x 63 ) }, qr/Punycode/i, 'Boom today' ); done_testing;