summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-09-18 12:34:23 -0600
committerKarl Williamson <khw@cpan.org>2019-11-17 12:34:37 -0700
commitff6bfb938431b27c37f353a5fbc8a532ceecfb3a (patch)
treeba2a93d2348243b8a5f84da14a3c1dbc25719ca7
parent623bed0828e2079b39cfcdf3f47819fd4fe51dc1 (diff)
downloadperl-ff6bfb938431b27c37f353a5fbc8a532ceecfb3a.tar.gz
t/re/anyof.t: Remove invalid test
One shouldn't be able to specify an infinite code point. The tests have the conceit that one can specify a range's upper limit as infinity, but that is just shorthand for the range being unbounded.
-rw-r--r--t/re/anyof.t1
1 files changed, 0 insertions, 1 deletions
diff --git a/t/re/anyof.t b/t/re/anyof.t
index b99ba6254e..14676dc741 100644
--- a/t/re/anyof.t
+++ b/t/re/anyof.t
@@ -708,7 +708,6 @@ my @tests = (
'[\x{10C}-{INFTY}\x{104}\x{102}]' => 'ANYOFH[0102 0104 010C-INFTY]',
'[\x{10C}-{INFTY}\x{104}\x{102}\x{103}]' => 'ANYOFH[0102-0104 010C-INFTY]',
'[{INFTY_minus_1}]' => 'ANYOFH[INFTY_minus_1]',
- '[{INFTY}]' => 'ANYOFH[INFTY-INFTY]',
'(?8)(?i)[\x{100}]' => 'EXACTFU_REQ8 <\x{101}>',
'(?8)(?i)[\x{399}]' => 'EXACTFU_REQ8 <\x{3b9}>',