diff options
Diffstat (limited to 'ext/Encode')
-rw-r--r-- | ext/Encode/t/perlio.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Encode/t/perlio.t b/ext/Encode/t/perlio.t index d3161ccca0..bc1ce1f971 100644 --- a/ext/Encode/t/perlio.t +++ b/ext/Encode/t/perlio.t @@ -164,7 +164,7 @@ SKIP:{ open $fh, ">:encoding($utf_nobom)", $sfile or die "$sfile : $!"; print $fh $str; close $fh; - open my $fh, "<:raw", $sfile or die "$sfile : $!"; + open my $fh, "<", $sfile or die "$sfile : $!"; read $fh, my $cmp, -s $sfile; close $fh; use bytes (); |