Skip to content

Commit

Permalink
Tweak STDOUT, STDERR instead of depending on utf8::all
Browse files Browse the repository at this point in the history
  • Loading branch information
hillu committed Jan 13, 2014
1 parent 1197bd5 commit 8253b25
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion perl/t/130-special.t
Expand Up @@ -2,7 +2,11 @@

use strict;
use warnings;
use utf8::all; # so the strings in this file are interpreted correctly.
use utf8; # so the strings in this file are interpreted correctly.
BEGIN {
binmode STDOUT, ':encoding(UTF-8)';
binmode STDERR, ':encoding(UTF-8)';
}
use Test::More;

use Win::Hivex;
Expand Down

0 comments on commit 8253b25

Please sign in to comment.