Skip to content

Commit

Permalink
Merge pull request #160 from dmvict/js_action
Browse files Browse the repository at this point in the history
READY: Fix tests on Windows
  • Loading branch information
dmvict authored Apr 25, 2024
2 parents 2e05f1a + fe05504 commit 0703199
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Command.test.s
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ function retryCheckRetryTime( test )
test.identical( _.strCount( op.output, 'Attempts exhausted, made 4 attempts' ), 0 );
if( process.platform === 'win32' )
{
test.le( _.strCount( op.output, 'str' ), 1 );
test.le( _.strCount( op.output, 'str' ), 2 );
test.identical( _.strCount( op.output, '::error::Process returned exit code 1' ), 1 );
}
else
Expand Down Expand Up @@ -586,7 +586,7 @@ function retryCheckRetryTime( test )
test.identical( _.strCount( op.output, 'Attempts exhausted, made 4 attempts' ), 0 );
if( process.platform === 'win32' )
{
test.le( _.strCount( op.output, 'str' ), 2 );
test.le( _.strCount( op.output, 'str' ), 3 );
test.identical( _.strCount( op.output, '::error::Process returned exit code 1' ), 1 );
}
else
Expand Down

0 comments on commit 0703199

Please sign in to comment.