aca6f0
--- t/000-report-versions-tiny.t
aca6f0
+++ t/000-report-versions-tiny.t
aca6f0
@@ -1,12 +1,6 @@
aca6f0
 use strict;
aca6f0
 use warnings;
aca6f0
-use Test::More 0.88;
aca6f0
-# This is a relatively nice way to avoid Test::NoWarnings breaking our
aca6f0
-# expectations by adding extra tests, without using no_plan.  It also helps
aca6f0
-# avoid any other test module that feels introducing random tests, or even
aca6f0
-# test plans, is a nice idea.
aca6f0
-our $success = 0;
aca6f0
-END { $success && done_testing; }
aca6f0
+use Test::More tests => 1;
aca6f0
 
aca6f0
 # List our own version used to generate this
aca6f0
 my $v = "\nGenerated by Dist::Zilla::Plugin::ReportVersions::Tiny v1.10\n";
aca6f0
@@ -52,7 +46,7 @@ eval { $v .= pmver('Carp','any version')
aca6f0
 eval { $v .= pmver('ExtUtils::MakeMaker','6.30') };
aca6f0
 eval { $v .= pmver('Scalar::Util','any version') };
aca6f0
 eval { $v .= pmver('Symbol','any version') };
aca6f0
-eval { $v .= pmver('Test::More','0.96') };
aca6f0
+eval { $v .= pmver('Test::More','0.47') };
aca6f0
 eval { $v .= pmver('strict','any version') };
aca6f0
 eval { $v .= pmver('warnings','any version') };
aca6f0
 
aca6f0
@@ -68,7 +62,6 @@ EOT
aca6f0
 
aca6f0
 diag($v);
aca6f0
 ok(1, "we really didn't test anything, just reporting data");
aca6f0
-$success = 1;
aca6f0
 
aca6f0
 # Work around another nasty module on CPAN. :/
aca6f0
 no warnings 'once';
aca6f0
--- xt/release/changes_has_content.t
aca6f0
+++ xt/release/changes_has_content.t
aca6f0
@@ -2,7 +2,6 @@
aca6f0
 
aca6f0
 use Test::More tests => 2;
aca6f0
 
aca6f0
-note 'Checking Changes';
aca6f0
 my $changes_file = 'Changes';
aca6f0
 my $newver = '1.106';
aca6f0
 my $trial_token = '-TRIAL';
aca6f0
@@ -14,8 +13,6 @@ SKIP: {
aca6f0
     ok(_get_changes($newver), "$changes_file has content for $newver");
aca6f0
 }
aca6f0
 
aca6f0
-done_testing;
aca6f0
-
aca6f0
 # _get_changes copied and adapted from Dist::Zilla::Plugin::Git::Commit
aca6f0
 # by Jerome Quelin
aca6f0
 sub _get_changes