Skip to content

Commit

Permalink
Merge pull request #161766 from microsoft/tyriar/161700
Browse files Browse the repository at this point in the history
Fix TestShellIntegrationAddon ctor args
  • Loading branch information
Tyriar committed Sep 26, 2022
2 parents 91b9c4c + 1a5c6ca commit 4ea1072
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ suite('ShellIntegrationAddon', () => {
xterm = new Terminal({ allowProposedApi: true, cols: 80, rows: 30 });
const instantiationService = new TestInstantiationService();
instantiationService.stub(ILogService, NullLogService);
shellIntegrationAddon = instantiationService.createInstance(TestShellIntegrationAddon);
shellIntegrationAddon = instantiationService.createInstance(TestShellIntegrationAddon, true, undefined);
xterm.loadAddon(shellIntegrationAddon);
capabilities = shellIntegrationAddon.capabilities;
});
Expand Down

0 comments on commit 4ea1072

Please sign in to comment.