diff options
-rw-r--r-- | perl-install/interactive_newt.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive_newt.pm b/perl-install/interactive_newt.pm index abdb09503..b5b167fb3 100644 --- a/perl-install/interactive_newt.pm +++ b/perl-install/interactive_newt.pm @@ -19,7 +19,7 @@ sub new() { Newt::Cls; Newt::SetSuspendCallback; ($width, $height) = Newt::GetScreenSize; - open STDERR,">/dev/null" if $::isStandalone; + open STDERR,">/dev/null" if $::isStandalone && !$::testing; bless {}, $_[0]; } |