summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorMats Dufberg <mats.dufberg@iis.se>2020-04-07 14:49:11 +0200
committerGitHub <noreply@github.com>2020-04-07 14:49:11 +0200
commitb19c79c6a787f80aa334b117a68454c53ac93309 (patch)
tree8655a0786eccfdd0005dbb8f611fd1101ee689f7 /t
parent07e0e5c8d6a472bf8e131886ef13ef62c9341042 (diff)
Test was locale dependent. Corrected that. Issue #102. (#103)
Diffstat (limited to 't')
-rw-r--r--t/idn.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/idn.t b/t/idn.t
index e29abe7..86c16c7 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;