This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=67b8a5ed8fe5fb546e00e84e54edfd0ba3eb8b70 commit 67b8a5ed8fe5fb546e00e84e54edfd0ba3eb8b70 Author: Guillem Jover <[email protected]> AuthorDate: Tue Sep 23 12:47:54 2025 +0200 test: Remove duplicate semicolon after statement --- scripts/t/Dpkg_Control.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/t/Dpkg_Control.t b/scripts/t/Dpkg_Control.t index 51c9b9c7f..e5ea385d5 100644 --- a/scripts/t/Dpkg_Control.t +++ b/scripts/t/Dpkg_Control.t @@ -46,7 +46,7 @@ my $c = Dpkg::Control::Info->new("$datadir/control-1"); my $io_data; my $io; -open $io, '>', \$io_data or die "canno open io string\n";; +open $io, '>', \$io_data or die "canno open io string\n"; $c->output($io); my $expected = 'Source: mysource @@ -102,7 +102,7 @@ is($pkg->{package}, 'mypackage3', 'Name of third package'); is($pkg->{Depends}, 'hello', 'Name of third package'); $pkg = $c->get_pkg_by_idx(2); -open $io, '>', \$io_data or die "canno open io string\n";; +open $io, '>', \$io_data or die "canno open io string\n"; $pkg->output($io); is($io_data, -- Dpkg.Org's dpkg

