aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog1
-rwxr-xr-xt/parentlinks.t4
2 files changed, 4 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 0f045cacf..63f53ce1f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -15,6 +15,7 @@ ikiwiki (3.20150615) UNRELEASED; urgency=medium
* Run autopkgtest tests using autodep8 and the pkg-perl team's
infrastructure
* t/img.t: do not spuriously skip
+ * tests: consistently use done_testing instead of no_plan
-- Simon McVittie <smcv@debian.org> Mon, 15 Jun 2015 18:13:23 +0100
diff --git a/t/parentlinks.t b/t/parentlinks.t
index 9b4654903..615fa62ed 100755
--- a/t/parentlinks.t
+++ b/t/parentlinks.t
@@ -4,7 +4,7 @@
use warnings;
use strict;
-use Test::More 'no_plan';
+use Test::More;
my %expected;
@@ -79,3 +79,5 @@ sub test_loop($$) {
# Main
test_loop('parentlinks', $expected{'parentlinks'});
+
+done_testing();