diff options
author | Florian Ragwitz <rafl@debian.org> | 2011-09-05 01:50:58 +0200 |
---|---|---|
committer | Florian Ragwitz <rafl@debian.org> | 2011-09-05 02:01:52 +0200 |
commit | b2fc7fd7bccc91c9b98059dad0b49eb97f84cc37 (patch) | |
tree | 3607cb6893e22e15a94170d1b549d633b4da54aa | |
parent | 288e907261c0b9aeab65105394973e26e198aa98 (diff) | |
download | perl-b2fc7fd7bccc91c9b98059dad0b49eb97f84cc37.tar.gz |
Fix a skip count in base's t/fields.t
-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__; |