summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgregor herrmann <gregoa@debian.org>2024-03-13 17:24:37 +0100
committergregor herrmann <gregoa@debian.org>2024-03-13 17:24:37 +0100
commitcf69dda3c2b3aecbbb6d0bc79c1d5da860d83cd5 (patch)
tree8ff4dc54af6f2e309a19bd71ab993eb2c6d3bd38
parentd56bc99075b17f09e4444d263c55f44cbda16467 (diff)
t/DpkgLists.t: use done_testing instead of counting tests
Gbp-Dch: ignore
-rwxr-xr-xt/DpkgLists.t4
1 files changed, 3 insertions, 1 deletions
diff --git a/t/DpkgLists.t b/t/DpkgLists.t
index cd624f7..c2e1dc8 100755
--- a/t/DpkgLists.t
+++ b/t/DpkgLists.t
@@ -4,7 +4,7 @@ use strict;
use warnings;
use Config;
-use Test::More tests => 7;
+use Test::More;
BEGIN {
use_ok 'Debian::DpkgLists';
@@ -47,3 +47,5 @@ is_deeply(
$split_perl_base ? ['perl-base', $pkg_perl_modules] : ['perl-base'],
"utf8 is in perl-base or $pkg_perl_modules (or only perl-base for perl < 5.22)"
);
+
+done_testing();