diff options
author | Florian Ragwitz <rafl@debian.org> | 2011-09-05 01:50:58 +0200 |
---|---|---|
committer | Florian Ragwitz <rafl@debian.org> | 2011-09-05 01:50:58 +0200 |
commit | 72b09cff8561f44fdff6ea0ff31492936aa30261 (patch) | |
tree | bd8752de49954208042e7deb264250b060413c00 /dist/base | |
parent | cc0b6dc4f07b23d8ea229429827e5fe3026a947a (diff) | |
download | perl-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.t | 2 |
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__; |