diff options
Diffstat (limited to 't/io/layers.t')
-rw-r--r-- | t/io/layers.t | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/io/layers.t b/t/io/layers.t index c399b2ad8f..abbc7ecf42 100644 --- a/t/io/layers.t +++ b/t/io/layers.t @@ -131,11 +131,11 @@ SKIP: { [ qw(stdio crlf) ], "open :crlf"); - binmode(F, ":encoding(sjis)"); # "sjis" will be canonized to "shiftjis" + binmode(F, ":encoding(cp1047)"); check([ PerlIO::get_layers(F) ], - [ qw[stdio crlf encoding(shiftjis) utf8] ], - ":encoding(sjis)"); + [ qw[stdio crlf encoding(cp1047) utf8] ], + ":encoding(cp1047)"); binmode(F, ":pop"); |