[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[automake-commit] 02/02: Remove parentheses around test argument lists
From: |
Paul Eggert |
Subject: |
[automake-commit] 02/02: Remove parentheses around test argument lists |
Date: |
Wed, 29 Mar 2023 15:50:01 -0400 |
eggert pushed a commit to branch master
in repository automake.
View the commit online:
https://git.savannah.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=794464f07fc068e4be34aca05a1a6ab8c3a67288
commit 794464f07fc068e4be34aca05a1a6ab8c3a67288
Author: Jacob Bachmeyer <jcb@gnu.org>
AuthorDate: Wed Feb 8 23:30:00 2023 -0600
Remove parentheses around test argument lists
This works around a parser bug in Perl 5.6.2.
* t/pm/General.pl: Remove parentheses on argument lists.
Copyright-paperwork-exempt: yes
---
t/pm/General.pl | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/t/pm/General.pl b/t/pm/General.pl
index bb99fce83..fafedbc46 100644
--- a/t/pm/General.pl
+++ b/t/pm/General.pl
@@ -18,10 +18,10 @@ use Automake::General;
my $failed = 0;
# Check 'none'.
-my $none_positive = none { $_[0] < 0 } (1, 7, 3, 8, 9);
+my $none_positive = none { $_[0] < 0 } 1, 7, 3, 8, 9;
$failed = 1 if ($none_positive == 0);
-my $none_gt_8 = none { $_[0] >= 8 } (1, 7, 3, 8, 9);
+my $none_gt_8 = none { $_[0] >= 8 } 1, 7, 3, 8, 9;
$failed = 1 if ($none_gt_8 == 1);
exit $failed;