Skip to content

Commit

Permalink
Use [] instead of simple string (#385)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulacamargo25 authored Jul 15, 2024
1 parent da7ee7b commit 131b580
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export async function buildFileWithArgsLaunchDebugConfiguration(
request: 'launch',
program: '${file}',
console: 'integratedTerminal',
args: '${command:pickArgs}',
args: ['${command:pickArgs}'],
};
sendTelemetryEvent(EventName.DEBUGGER_CONFIGURATION_PROMPTS, undefined, {
configurationType: DebugConfigurationType.launchFileWithArgs,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ suite('Debugging - Configuration Provider File with Arguments', () => {
request: 'launch',
program: '${file}',
console: 'integratedTerminal',
args: '${command:pickArgs}',
args: ['${command:pickArgs}'],
};

expect(state.config).to.be.deep.equal(config);
Expand Down

0 comments on commit 131b580

Please sign in to comment.