summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
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 ^^^^^^^^^