/Compress/ modules are at version 2.021. Remove vestigal MAPs and comments.
[p5sagit/p5-mst-13.2.git] / ext / POSIX / t / time.t
index c09a375..103a161 100644 (file)
@@ -21,10 +21,10 @@ SKIP: {
           $^O eq "MSWin32" || $^O eq "dos" || $^O eq "interix";
     tzset();
     my @tzname = tzname();
-    like($tzname[0], qr/[GMT|UTC]/i, "tzset() to GMT/UTC");
+    like($tzname[0], qr/(GMT|UTC)/i, "tzset() to GMT/UTC");
     SKIP: {
         skip "Mac OS X/Darwin doesn't handle this", 1 if $^O =~ /darwin/i;
-        like($tzname[1], qr/[GMT|UTC]/i, "The whole year?");
+        like($tzname[1], qr/(GMT|UTC)/i, "The whole year?");
     }
 }