diff options
author | Ilya Zakharevich <ilya@math.berkeley.edu> | 1998-07-08 03:03:51 -0400 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-09 01:06:47 +0000 |
commit | 1bd3ad17f2b89c5c7610c541aa9f8fd2ae783e7f (patch) | |
tree | 6b1a179318db72e39e95f01053ffc90ac04213f4 /t | |
parent | 7b973d54ee9f4af760c175291b3c14ce8a682f33 (diff) | |
download | perl-1bd3ad17f2b89c5c7610c541aa9f8fd2ae783e7f.tar.gz |
manually apply patch with a dependency on unapplied patch
Message-Id: <199807081103.HAA25145@monk.mps.ohio-state.edu>
Subject: [PATCH 5.004_70] make quoted RE embeddable
p4raw-id: //depot/perl@1383
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++; |