diff options
Diffstat (limited to 't/re/regex_sets.t')
-rw-r--r-- | t/re/regex_sets.t | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/t/re/regex_sets.t b/t/re/regex_sets.t index ee161b2eeb..0511117b1a 100644 --- a/t/re/regex_sets.t +++ b/t/re/regex_sets.t @@ -27,7 +27,6 @@ like("a", qr/(?[ [a] # This is a comment like("a", qr/(?[ [a] # [[:notaclass:]] ])/, 'A comment isn\'t parsed'); unlike(uni_to_native("\x85"), qr/(?[ \t
])/, 'NEL is white space'); -unlike(uni_to_native("\x85"), qr/(?[ [\t
] ])/, '... including within nested []'); like(uni_to_native("\x85"), qr/(?[ \t + \
])/, 'can escape NEL to match'); like(uni_to_native("\x85"), qr/(?[ [\
] ])/, '... including within nested []'); like("\t", qr/(?[ \t + \
])/, 'can do basic union'); |