From: Graham Knop Date: Wed, 6 Nov 2013 16:18:42 +0000 (-0500) Subject: add missing skip label to test X-Git-Tag: v1.005001~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=bce2c903818f2aa627532c2d91c644ff4d1afc89;p=p5sagit%2Fstrictures.git add missing skip label to test --- diff --git a/t/strictures.t b/t/strictures.t index 4f6b020..877439b 100644 --- a/t/strictures.t +++ b/t/strictures.t @@ -57,7 +57,7 @@ SKIP: { ok(!eval q{use strictures 2; 1; }, "Can't use strictures 2 (this is version 1)"); -{ +SKIP: { skip 'Extra tests disabled on perls <= 5.008003', 1 if $] < 5.008004; local $ENV{PERL_STRICTURES_EXTRA} = 1;