]> git.vpit.fr Git - perl/modules/Lexical-Types.git/blobdiff - t/30-threads.t
Replace $] by "$]"
[perl/modules/Lexical-Types.git] / t / 30-threads.t
index d48fa023032c4b5607433e873c464a307d0e4961..c616b76ecf65a3804a3de55cb5461c87a30ac331 100644 (file)
@@ -16,7 +16,7 @@ BEGIN {
  skipall 'This perl wasn\'t built to support threads'
                                                     unless $Config{useithreads};
  skipall 'perl 5.13.4 required to test thread safety'
-                                                unless $force or $] >= 5.013004;
+                                              unless $force or "$]" >= 5.013004;
 }
 
 use threads;
@@ -67,7 +67,7 @@ EVALD
 SKIP:
   {
    skip 'Hints aren\'t propagated into eval STRING below perl 5.10' => 3
-                                                             unless $] >= 5.010;
+                                                           unless "$]" >= 5.010;
    eval <<'EVALD';
     my Tag $t3;
     is $t3, $tid, "typed lexical correctly initialized in eval (propagated) at run $_ in thread $tid"