Skip to content

Commit 9d5741f

Browse files
authored
Fix Windows unit tests (microsoft#165973)
1 parent ef75cfd commit 9d5741f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/terminal/test/node/terminalProfiles.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ suite('Workbench - TerminalProfiles', () => {
4747
const configurationService = new TestConfigurationService({ terminal: { integrated: config } });
4848
const profiles = await detectAvailableProfiles(undefined, undefined, false, configurationService, process.env, fsProvider, undefined, undefined, undefined);
4949
const expected = [
50-
{ profileName: 'Git Bash', path: 'C:\\Program Files\\Git\\bin\\bash.exe', args: ['--login'], isDefault: true }
50+
{ profileName: 'Git Bash', path: 'C:\\Program Files\\Git\\bin\\bash.exe', args: ['--login', '-i'], isDefault: true }
5151
];
5252
profilesEqual(profiles, expected);
5353
});

0 commit comments

Comments
 (0)