summaryrefslogtreecommitdiff
path: root/cpan/Test-Simple/t/utf8.t
diff options
context:
space:
mode:
Diffstat (limited to 'cpan/Test-Simple/t/utf8.t')
-rw-r--r--cpan/Test-Simple/t/utf8.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpan/Test-Simple/t/utf8.t b/cpan/Test-Simple/t/utf8.t
index f68b2a7680..2930226e3e 100644
--- a/cpan/Test-Simple/t/utf8.t
+++ b/cpan/Test-Simple/t/utf8.t
@@ -43,9 +43,9 @@ SKIP: {
for my $method (keys %handles) {
my $src = $handles{$method};
-
+
my $dest = Test::More->builder->$method;
-
+
is_deeply { map { $_ => 1 } PerlIO::get_layers($dest) },
{ map { $_ => 1 } PerlIO::get_layers($src) },
"layers copied to $method";
@@ -56,7 +56,7 @@ SKIP: {
# Test utf8 is ok.
{
my $uni = "\x{11e}";
-
+
my @warnings;
local $SIG{__WARN__} = sub {
push @warnings, @_;