From: Jarkko Hietaniemi Date: Mon, 25 Feb 2002 03:40:45 +0000 (+0000) Subject: Cut-and-paste errors. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=27e286305709fd65c0552ee5c80cd788a8114b0e;p=p5sagit%2Fp5-mst-13.2.git Cut-and-paste errors. p4raw-id: //depot/perl@14861 --- diff --git a/t/op/pat.t b/t/op/pat.t index 00ea74f..86025d1 100755 --- a/t/op/pat.t +++ b/t/op/pat.t @@ -2290,7 +2290,7 @@ print "# some Unicode properties\n"; print "not " unless "a\x{100}" =~ /A/i; print "ok 754\n"; - print "not " unless "A\x{100}" =~ /A/i; + print "not " unless "A\x{100}" =~ /a/i; print "ok 755\n"; print "not " unless "a\x{100}" =~ /a/i; @@ -2314,7 +2314,7 @@ print "# some Unicode properties\n"; print "not " unless "a\x{100}" =~ /A\x{100}/i; print "ok 762\n"; - print "not " unless "A\x{100}" =~ /A\x{100}/i; + print "not " unless "A\x{100}" =~ /a\x{100}/i; print "ok 763\n"; print "not " unless "a\x{100}" =~ /a\x{100}/i; @@ -2326,7 +2326,7 @@ print "# some Unicode properties\n"; print "not " unless "a\x{100}" =~ /[A]/i; print "ok 766\n"; - print "not " unless "A\x{100}" =~ /[A]/i; + print "not " unless "A\x{100}" =~ /[a]/i; print "ok 767\n"; print "not " unless "a\x{100}" =~ /[a]/i;