Fix failing test on macOS

Started failing with #232968
This commit is contained in:
Daniel Imms
2024-11-04 05:31:06 -08:00
parent e37672f7d7
commit b2dc7fddf2

View File

@@ -217,7 +217,7 @@ import { assertNoRpc } from '../utils';
const { execution, endEvent } = executeCommandAsync(shellIntegration, 'echo', ['hello']);
const executionSync = await execution;
const expectedCommandLine: TerminalShellExecutionCommandLine = {
value: 'echo "hello"',
value: 'echo hello',
isTrusted: true,
confidence: TerminalShellExecutionCommandLineConfidence.High
};