Skip to content

Commit

Permalink
Fix the logic
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Sep 20, 2016
1 parent dda885d commit 8900221
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ my $online_tests;

if($ENV{RELEASE_TESTING}) {
$online_tests = are_online();
} elsif($ENV{AUTOMATED_TESTING} && !$ENV{NO_NETWORK_TESTING}) {
} elsif($ENV{AUTOMATED_TESTING} || !$ENV{NO_NETWORK_TESTING}) {
$online_tests = 0;
} else {
Getopt::Long::GetOptions('online-tests!' => \$online_tests);
Expand Down

0 comments on commit 8900221

Please sign in to comment.