diff options
author | Father Chrysostomos <sprout@cpan.org> | 2013-06-22 00:26:12 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2013-07-25 23:48:00 -0700 |
commit | 2ca971d50b815fd6da6adac5c6691ac438237e05 (patch) | |
tree | 61d188b1e1149cb42610ec1a5233b8cf2e18e906 /dist/constant | |
parent | b479c9f2a3f3a9f9f47dff1a0cb8e53c200796aa (diff) | |
download | perl-2ca971d50b815fd6da6adac5c6691ac438237e05.tar.gz |
constant.t: Correct version
I didn’t have this done in time for 5.19.1.
Diffstat (limited to 'dist/constant')
-rw-r--r-- | dist/constant/t/constant.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/constant/t/constant.t b/dist/constant/t/constant.t index d39c05a6d3..93fb5784c8 100644 --- a/dist/constant/t/constant.t +++ b/dist/constant/t/constant.t @@ -392,10 +392,10 @@ SKIP: { } # Test that list constants are also immutable. This only works under -# 5.19.1 and later (er, except it doesn’t work under that version yet, +# 5.19.2 and later (er, except it doesn’t work under that version yet, # either, hence the to-do status). SKIP: { - skip "fails under 5.19.0 and earlier", 2 if $] < 5.019001; + skip "fails under 5.19.1 and earlier", 2 if $] < 5.019002; local $TODO = " "; use constant constant_list => 1..2; for (constant_list) { |