From: Jarkko Hietaniemi Date: Mon, 15 Oct 2001 13:35:36 +0000 (+0000) Subject: Sync the skip() amounts with the number of tests. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1f137b8aa25f50bde68badea2080f0af72719ed2;p=p5sagit%2Fp5-mst-13.2.git Sync the skip() amounts with the number of tests. p4raw-id: //depot/perl@12442 --- diff --git a/lib/Term/Complete.t b/lib/Term/Complete.t index e49497e..81253cc 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;