diff options
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index f18b287b6..7257223b7 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -957,7 +957,7 @@ sub acceptLicense { return if $o->{useless_thing_accepted}; - my $r = $::testing || 1 ? 'Accept' : 'Refuse'; + my $r = $::testing ? 'Accept' : 'Refuse'; $o->ask_from_({ title => N("License agreement"), focus_first => 1, |