Make tie_fetch_count.t pass with PERL_UNICODE set
authorFather Chrysostomos <sprout@cpan.org>
Mon, 29 Aug 2011 01:08:52 +0000 (18:08 -0700)
committerFather Chrysostomos <sprout@cpan.org>
Mon, 29 Aug 2011 01:09:33 +0000 (18:09 -0700)
t/op/tie_fetch_count.t

index 30e1c91..f4527a1 100644 (file)
@@ -185,14 +185,14 @@ $dummy  = &$var5        ; check_count '&{}';
     local *1 = sub{};
     $dummy  = &$var1        ; check_count 'symbolic &{}';
 
-    # This test will not be a complete test if ${^OPEN} has been created
+    # This test will not be a complete test if *988 has been created
     # already.  If this dies, change it to use another built-in variable.
     # In 5.10-14, rv2gv calls get-magic more times for built-in vars, which
     # is why we need the test this way.
-    if (exists $::{"\cOPEN"}) {
-       die "*{^OPEN} already exists. Please adjust this test"
+    if (exists $::{988}) {
+       die "*988 already exists. Please adjust this test"
     }
-    tie my $var6 => main => "\cOPEN";
+    tie my $var6 => main => 988;
     no warnings;
     readdir $var6           ; check_count 'symbolic readdir';
     if (exists $::{973}) { # Need a different variable here