File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/core/src/test/shared/extensions Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -62,8 +62,8 @@ describe('SSH Versioning', function () {
6262 it ( 'asserts version is above threshold' , async function ( ) {
6363 const sshPath = path . join ( tempDir . uri . fsPath , `ssh3${ isWin ( ) ? '.cmd' : '' } ` )
6464 await createExecutableFile ( sshPath , `echo "'OpenSSH_9.7p1, LibreSSL 3.3.6'"` )
65- await assert . rejects ( async ( ) => await ensureSshVersionGte ( '' , '9.10' ) )
66- await assert . doesNotReject ( async ( ) => await ensureSshVersionGte ( '' , '9.7.0' ) )
67- await assert . doesNotReject ( async ( ) => await ensureSshVersionGte ( '' , '9.2.0' ) )
65+ await assert . rejects ( async ( ) => await ensureSshVersionGte ( sshPath , '9.10' ) )
66+ await assert . doesNotReject ( async ( ) => await ensureSshVersionGte ( sshPath , '9.7.0' ) )
67+ await assert . doesNotReject ( async ( ) => await ensureSshVersionGte ( sshPath , '9.2.0' ) )
6868 } )
6969} )
You can’t perform that action at this time.
0 commit comments