Wrong skip count in t/op/stash.t
authorMichael G Schwern <schwern@pobox.com>
Sun, 12 Jul 2009 09:38:42 +0000 (02:38 -0700)
committerVincent Pit <perl@profvince.com>
Sun, 12 Jul 2009 10:14:15 +0000 (12:14 +0200)
stash.t has the wrong number of tests to skip when dynamic loading is not
available breaking minitest.

t/op/stash.t

index 546bf9f..57c8659 100644 (file)
@@ -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();