From: Graham Knop Date: Wed, 3 Apr 2013 15:55:02 +0000 (-0400) Subject: fix version check in test script X-Git-Tag: Devel-GlobalDestruction-0.11~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-GlobalDestruction.git;a=commitdiff_plain;h=4259d9984d06773e6c5fe29e01dae8fd6cf22160 fix version check in test script --- diff --git a/t/01_basic.t b/t/01_basic.t index 95e61b3..c8d847f 100644 --- a/t/01_basic.t +++ b/t/01_basic.t @@ -21,7 +21,7 @@ our $had_error; # try to ensure this is the last-most END so we capture future tests # running in other ENDs -if ($[ >= 5.008) { +if ($] >= 5.008) { require B; my $reinject_retries = my $max_retry = 5; my $end_worker;