60 lines
1.9 KiB
Diff
60 lines
1.9 KiB
Diff
From 1d3e5acc95f7f273939d9d57f388b0d972450804 Mon Sep 17 00:00:00 2001
|
|
From: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
|
|
Date: Wed, 5 Mar 2014 00:40:46 +0000
|
|
Subject: [PATCH] Resolve RT#93293 test failure
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Signed-off-by: Petr Písař <ppisar@redhat.com>
|
|
---
|
|
Makefile.PL | 2 +-
|
|
t/20_authors_with_special_characters.t | 6 +++---
|
|
2 files changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/Makefile.PL b/Makefile.PL
|
|
index d31fd4d..2cc1bf8 100644
|
|
--- a/Makefile.PL
|
|
+++ b/Makefile.PL
|
|
@@ -20,7 +20,7 @@ name 'Module-Install';
|
|
author 'Adam Kennedy <adamk@cpan.org>';
|
|
perl_version '5.005';
|
|
all_from 'lib/Module/Install.pm';
|
|
-requires 'Parse::CPAN::Meta' => '1.39';
|
|
+requires 'Parse::CPAN::Meta' => '1.4413';
|
|
requires 'File::Spec' => '3.28';
|
|
requires 'Devel::PPPort' => '3.16';
|
|
requires 'File::Remove' => '1.42';
|
|
diff --git a/t/20_authors_with_special_characters.t b/t/20_authors_with_special_characters.t
|
|
index 12eeb86..78787e5 100644
|
|
--- a/t/20_authors_with_special_characters.t
|
|
+++ b/t/20_authors_with_special_characters.t
|
|
@@ -94,7 +94,7 @@ END
|
|
my $metafile = file('META.yml');
|
|
ok(-f $metafile);
|
|
my $meta = Parse::CPAN::Meta::LoadFile($metafile);
|
|
- is_deeply($meta->{author}, [qq(Olivier Mengu\xE9)]);
|
|
+ is_deeply($meta->{author}, [q(Olivier Mengu\xE9)]);
|
|
ok( kill_dist(), 'kill_dist' );
|
|
}
|
|
|
|
@@ -119,7 +119,7 @@ END_DSL
|
|
my $metafile = file('META.yml');
|
|
ok(-f $metafile);
|
|
my $meta = Parse::CPAN::Meta::LoadFile($metafile);
|
|
- is_deeply($meta->{author}, [qq(Olivier Mengu\xE9)]);
|
|
+ is_deeply($meta->{author}, [q(Olivier Mengu\xE9)]);
|
|
ok( kill_dist(), 'kill_dist' );
|
|
}
|
|
}
|
|
@@ -127,4 +127,4 @@ else {
|
|
SKIP: {
|
|
skip "this test requires perl 5.8", 17;
|
|
}
|
|
-}
|
|
\ No newline at end of file
|
|
+}
|
|
--
|
|
1.9.0
|
|
|