summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--t/op/repeat.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/op/repeat.t b/t/op/repeat.t
index 15cf66eb89..8df5241912 100644
--- a/t/op/repeat.t
+++ b/t/op/repeat.t
@@ -137,8 +137,8 @@ my ($x, $y) = scalar ((1,2)x2);
is($x, "22", 'list repeat in scalar context');
is($y, undef, ' no extra values on stack');
-# Make sure the stack doesn't get truncated too much - the left
-# operand of the eq binop needs to remain!
+# Make sure the stack doesn't get truncated too much - the first
+# argument to is() needs to remain!
is(77, scalar ((1,7)x2), 'stack truncation');
# ( )x in void context should not read preceding stack items