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