From d4be221e64b2769d4aba171609b249774b3c67df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20Berthaud-M=C3=BCller?= Date: Wed, 24 May 2023 16:23:44 +0200 Subject: [PATCH 1/2] avoid using $_ in "my" statements --- t/po-files.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/po-files.t b/t/po-files.t index c35909899..a33bc2c9f 100644 --- a/t/po-files.t +++ b/t/po-files.t @@ -43,7 +43,7 @@ subtest "check po files" => sub { }; subtest "check msg args" => sub { - my ( $output, $_ ) = make "check-msg-args"; + my ( $output, $status ) = make "check-msg-args"; is $output, "", $makebin . ' check-msg-args gives empty output'; }; From 33aa6b329bddf954ee9d3c22f5f6fd6f2e107085 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20Berthaud-M=C3=BCller?= Date: Tue, 30 May 2023 11:21:53 +0200 Subject: [PATCH 2/2] remove unused variable --- t/po-files.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/po-files.t b/t/po-files.t index a33bc2c9f..1177da9a5 100644 --- a/t/po-files.t +++ b/t/po-files.t @@ -43,7 +43,7 @@ subtest "check po files" => sub { }; subtest "check msg args" => sub { - my ( $output, $status ) = make "check-msg-args"; + my ( $output ) = make "check-msg-args"; is $output, "", $makebin . ' check-msg-args gives empty output'; };