In perl.git, the branch tux/no-dot-inc has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/3cc3f4e8a00cebda117a8ff92a27a02f3310e719?hp=0e0a64d7d59ee834ed7d3dc77d91d8fd569a8b8c>

- Log -----------------------------------------------------------------
commit 3cc3f4e8a00cebda117a8ff92a27a02f3310e719
Author: Aaron Crane <[email protected]>
Date:   Fri Nov 11 16:13:00 2016 +0100

    Fix list parenthesisation
-----------------------------------------------------------------------

Summary of changes:
 t/run/runenv.t | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/t/run/runenv.t b/t/run/runenv.t
index 8861a3d..fbaf169 100644
--- a/t/run/runenv.t
+++ b/t/run/runenv.t
@@ -285,7 +285,7 @@ is ($err, '', 'No errors when determining @INC');
 
 my @default_inc = split /\n/, $out;
 
-ok ! grep { $_ eq '.' } @default_inc, '. is not in @INC';
+ok !(grep { $_ eq '.' } @default_inc), '. is not in @INC';
 #is ($default_inc[-1], '.', '. is last in @INC');
 
 my $sep = $Config{path_sep};

--
Perl5 Master Repository

Reply via email to