summaryrefslogtreecommitdiff
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 02:01:52 +0200
commitb2fc7fd7bccc91c9b98059dad0b49eb97f84cc37 (patch)
tree3607cb6893e22e15a94170d1b549d633b4da54aa
parent288e907261c0b9aeab65105394973e26e198aa98 (diff)
downloadperl-b2fc7fd7bccc91c9b98059dad0b49eb97f84cc37.tar.gz
Fix a skip count in base's t/fields.t
-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__;