diff options
-rw-r--r-- | t/porting/customized.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/porting/customized.t b/t/porting/customized.t index 331e118080..a769c58cc9 100644 --- a/t/porting/customized.t +++ b/t/porting/customized.t @@ -71,10 +71,10 @@ EOF my $data_fh; if ( $regen ) { - open $data_fh, '>:bytes', $customised or die "Can't open $customised"; + open $data_fh, '>:raw', $customised or die "Can't open $customised"; } else { - open $data_fh, '<:bytes', $customised or die "Can't open $customised"; + open $data_fh, '<:raw', $customised or die "Can't open $customised"; while (<$data_fh>) { chomp; my ($module,$file,$sha) = split ' '; |