From: Jarkko Hietaniemi Date: Thu, 21 Jun 2001 12:52:37 +0000 (+0000) Subject: Case of confused test numbering. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=395ddfe62c8314bb91a6a28057648356e4dfc9bf;p=p5sagit%2Fp5-mst-13.2.git Case of confused test numbering. p4raw-id: //depot/perl@10778 --- diff --git a/t/op/pat.t b/t/op/pat.t index f8f7535..2531d71 100755 --- a/t/op/pat.t +++ b/t/op/pat.t @@ -6,7 +6,7 @@ $| = 1; -print "1..632\n"; +print "1..634\n"; BEGIN { chdir 't' if -d 't'; @@ -1786,13 +1786,13 @@ EOT #test /o feature sub test_o { $_[0] =~/$_[1]/o; return $1} if(test_o('abc','(.)..') eq 'a') { - print "ok 631\n"; + print "ok 633\n"; } else { - print "not ok 631\n"; + print "not ok 633\n"; } if(test_o('abc','..(.)') eq 'a') { - print "ok 632\n"; + print "ok 634\n"; } else { - print "not ok 632\n"; + print "not ok 634\n"; }