Skip to content

Commit b910f85

Browse files
committed
remove linux-command in exec
1 parent a11c2fc commit b910f85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/core/src/test/shared/utilities/pathFind.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ describe('pathFind', function () {
6060
testutil.setEnv(testutil.envWithNewPath(workspace.uri.fsPath))
6161
const firstResult = await findSshPath(false)
6262

63-
await testutil.createExecutableFile(fakeSshPath, 'echo "this is ssh"')
63+
await testutil.createExecutableFile(fakeSshPath, '')
6464

6565
const secondResult = await findSshPath(false)
6666

@@ -81,7 +81,7 @@ describe('pathFind', function () {
8181
it('caches result from previous runs', async function () {
8282
const workspace = await testutil.createTestWorkspaceFolder()
8383
const fakeSshPath = path.join(workspace.uri.fsPath, `ssh`)
84-
await testutil.createExecutableFile(fakeSshPath, 'echo "this is ssh"')
84+
await testutil.createExecutableFile(fakeSshPath, '')
8585

8686
testutil.setEnv(testutil.envWithNewPath(workspace.uri.fsPath))
8787
const firstResult = await findSshPath(true)

0 commit comments

Comments
 (0)