diff options
Diffstat (limited to 'lib/Term/Complete.t')
-rw-r--r-- | lib/Term/Complete.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Term/Complete.t b/lib/Term/Complete.t index e49497e32e..81253cc1d6 100644 --- a/lib/Term/Complete.t +++ b/lib/Term/Complete.t @@ -10,12 +10,12 @@ use Test::More tests => 8; use vars qw( $Term::Complete::complete $complete $Term::Complete::stty ); SKIP: { - skip('PERL_SKIP_TTY_TEST', 7) if $ENV{PERL_SKIP_TTY_TEST}; + skip('PERL_SKIP_TTY_TEST', 8) if $ENV{PERL_SKIP_TTY_TEST}; use_ok( 'Term::Complete' ); # this skips tests AND prevents the "used only once" warning - skip('No stty, Term::Complete will not run here', 7) + skip('No stty, Term::Complete will not run here', 8) unless defined $Term::Complete::tty_raw_noecho && defined $Term::Complete::tty_restore; |