Make the test harder.
authorJarkko Hietaniemi <jhi@iki.fi>
Tue, 15 Jan 2002 13:53:01 +0000 (13:53 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Tue, 15 Jan 2002 13:53:01 +0000 (13:53 +0000)
p4raw-id: //depot/perl@14273

t/op/pat.t

index f1448a5..9af9359 100755 (executable)
@@ -2232,10 +2232,10 @@ print "# some Unicode properties\n";
 }
 
 {
-    print "not " unless "a" =~ /\p{Lowercase}/;
+    print "not " unless "a" =~ /\p{Lowercase Letter}/;
     print "ok 745\n";
 
-    print "not " if     "A" =~ /\p{Lowercase}/;
+    print "not " if     "A" =~ /\p{lowercaseletter}/;
     print "ok 746\n";
 }