summaryrefslogtreecommitdiff
path: root/t/op/each.t
diff options
context:
space:
mode:
Diffstat (limited to 't/op/each.t')
-rwxr-xr-xt/op/each.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/each.t b/t/op/each.t
index 556479ef70..8212264d55 100755
--- a/t/op/each.t
+++ b/t/op/each.t
@@ -135,7 +135,7 @@ ok ($i == 5);
# Check for Unicode hash keys.
%u = ("\x{12}", "f", "\x{123}", "fo", "\x{1234}", "foo");
$u{"\x{12345}"} = "bar";
-@u{"\x{123456}"} = "zap";
+@u{"\x{10FFFD}"} = "zap";
my %u2;
foreach (keys %u) {