diff options
Diffstat (limited to 'lib/ExtUtils/t/Manifest.t')
-rw-r--r-- | lib/ExtUtils/t/Manifest.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExtUtils/t/Manifest.t b/lib/ExtUtils/t/Manifest.t index f531406a44..04c57ead4c 100644 --- a/lib/ExtUtils/t/Manifest.t +++ b/lib/ExtUtils/t/Manifest.t @@ -81,7 +81,7 @@ is( $res, 'bar', 'bar reported as new' ); use vars qw($ExtUtils::Manifest::Quiet); $ExtUtils::Manifest::Quiet = 1; ($res, $warn) = catch_warning( \&ExtUtils::Manifest::skipcheck ); -is( $warn, '', 'disabled warnings' ); +cmp_ok( $warn, ,'eq', '', 'disabled warnings' ); # add a skip file with a rule to skip itself add_file( 'MANIFEST.SKIP', "baz\n.SKIP" ); |