From: Michael G Schwern Date: Sun, 12 Jul 2009 09:38:42 +0000 (-0700) Subject: Wrong skip count in t/op/stash.t X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fb6e4a4e4598d2f4d2f011525b2ff33f3b73f007;p=p5sagit%2Fp5-mst-13.2.git Wrong skip count in t/op/stash.t stash.t has the wrong number of tests to skip when dynamic loading is not available breaking minitest. --- diff --git a/t/op/stash.t b/t/op/stash.t index 546bf9f..57c8659 100644 --- a/t/op/stash.t +++ b/t/op/stash.t @@ -65,7 +65,7 @@ ok( !eval q{ defined %schoenmaker:: }, 'works in eval("")' ); } SKIP: { - eval { require B; 1 } or skip "no B", 12; + eval { require B; 1 } or skip "no B", 18; *b = \&B::svref_2object; my $CVf_ANON = B::CVf_ANON();