diff options
Diffstat (limited to 't')
-rwxr-xr-x | t/op/pat.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/pat.t b/t/op/pat.t index 7ee1f0943c..a4335b06d3 100755 --- a/t/op/pat.t +++ b/t/op/pat.t @@ -440,7 +440,7 @@ print "ok $test\n"; $test++; # This should be changed to qr/\b\v$/ ASAP -print "not " unless study(/\b\v$/) eq '\bv$'; +print "not " unless study(/\b\v$/) eq '(?:\bv$)'; print "ok $test\n"; $test++; |