summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2013-08-29 11:02:40 +0200
committerNicholas Clark <nick@ccl4.org>2013-08-29 11:02:40 +0200
commit53f775c2ac46477914a80e552244b55e4cae4d4c (patch)
tree69131279493c3534518dbcbe8cbbb20215cfc249 /t
parent66230c862b0c3d1a8bbb014cc747d938d0e90149 (diff)
downloadperl-53f775c2ac46477914a80e552244b55e4cae4d4c.tar.gz
Update the comments in t/op/magic.t
(This should have been part of the previous commit, but I forgot to --amend it)
Diffstat (limited to 't')
-rw-r--r--t/op/magic.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/op/magic.t b/t/op/magic.t
index 2ad591a8ad..10bf62c80b 100644
--- a/t/op/magic.t
+++ b/t/op/magic.t
@@ -650,8 +650,9 @@ is $stuff[0], $stuff[1], '$^H modifies ${^OPEN} consistently';
is ${^MPE}, undef, '${^MPE} starts undefined';
is ++${^MPE}, 1, '${^MPE} can be incremented';
-# This one used to fail due to a missing break;
+# This one used to behave as ${^MATCH} due to a missing break:
is ${^MPEN}, undef, '${^MPEN} starts undefined';
+# This one used to croak due to that missing break:
is ++${^MPEN}, 1, '${^MPEN} can be incremented';
# ^^^^^^^^^ New tests go here ^^^^^^^^^