summaryrefslogtreecommitdiff
path: root/dist/constant
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2013-06-22 00:26:12 -0700
committerFather Chrysostomos <sprout@cpan.org>2013-07-25 23:48:00 -0700
commit2ca971d50b815fd6da6adac5c6691ac438237e05 (patch)
tree61d188b1e1149cb42610ec1a5233b8cf2e18e906 /dist/constant
parentb479c9f2a3f3a9f9f47dff1a0cb8e53c200796aa (diff)
downloadperl-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.t4
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) {