mirror of
https://github.com/duncs/clusterssh.git
synced 2025-04-21 09:09:06 +00:00
fix skip condition
This commit is contained in:
parent
3467c5191d
commit
ab1dde0e8c
1 changed files with 1 additions and 1 deletions
|
@ -479,7 +479,7 @@ is( $trap->stderr,
|
|||
);
|
||||
|
||||
SKIP: {
|
||||
skip "Test inappropriate when running as root", 5, $< == 0;
|
||||
skip "Test inappropriate when running as root", 5 if $< == 0;
|
||||
note('move of .csshrc failure');
|
||||
$ENV{HOME} = tempdir( CLEANUP => 1 );
|
||||
open( $csshrc, '>', $ENV{HOME} . '/.csshrc' );
|
||||
|
|
Loading…
Add table
Reference in a new issue