summaryrefslogtreecommitdiff
path: root/dist/base
diff options
context:
space:
mode:
authorFlorian Ragwitz <rafl@debian.org>2011-09-05 01:50:58 +0200
committerFlorian Ragwitz <rafl@debian.org>2011-09-05 01:50:58 +0200
commit72b09cff8561f44fdff6ea0ff31492936aa30261 (patch)
treebd8752de49954208042e7deb264250b060413c00 /dist/base
parentcc0b6dc4f07b23d8ea229429827e5fe3026a947a (diff)
downloadperl-72b09cff8561f44fdff6ea0ff31492936aa30261.tar.gz
Fix a skip count in base's t/fields.t
Diffstat (limited to 'dist/base')
-rw-r--r--dist/base/t/fields.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/base/t/fields.t b/dist/base/t/fields.t
index d5f23b61d7..87c6ccc286 100644
--- a/dist/base/t/fields.t
+++ b/dist/base/t/fields.t
@@ -108,7 +108,7 @@ package main;
ok(exists $x->{b}, 'x has b');
SKIP: {
- skip "These tests trigger a perl bug", 1 if $] < 5.014001;
+ skip "These tests trigger a perl bug", 2 if $] < 5.014001;
$x->{a} = __PACKAGE__;
ok eval { delete $x->{a}; 1 }, 'deleting COW values';
$x->{a} = __PACKAGE__;