From: Vincent Pit Date: Fri, 4 Oct 2013 20:20:43 +0000 (-0300) Subject: Remove a now useless SKIP directive X-Git-Tag: v0.13~11 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLexical-Types.git;a=commitdiff_plain;h=55716e9a7414ca5da96259d66fd0f20c1cbba893 Remove a now useless SKIP directive The block was skipped for perl 5.8.2 and below, but we now require 5.8.3. --- diff --git a/t/31-threads-teardown.t b/t/31-threads-teardown.t index bc3dff9..741d224 100644 --- a/t/31-threads-teardown.t +++ b/t/31-threads-teardown.t @@ -19,10 +19,7 @@ sub run_perl { system { $^X } $^X, '-T', map("-I$_", @INC), '-e', $code; } -SKIP: { - skip 'Fails on 5.8.2 and lower' => 1 if "$]" <= 5.008_002; - my $status = run_perl <<' RUN'; { package IntX; package IntY; package IntZ; } my ($code, @expected);