Skip to content

Commit acecc75

Browse files
committed
Change extension to be .psm1 in terminalEnvironment.test.ts
1 parent 0389649 commit acecc75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/platform/terminal/test/node/terminalEnvironment.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ suite('platform - terminalEnvironment', async () => {
4848
// These tests are only expected to work on Windows 10 build 18309 and above
4949
(getWindowsBuildNumber() < 18309 ? suite.skip : suite)('pwsh', async () => {
5050
const expectedPs1 = process.platform === 'win32'
51-
? `try { Import-Module "${repoRoot}\\out\\vs\\workbench\\contrib\\terminal\\common\\scripts\\shellIntegration.ps1" } catch {}`
52-
: `Import-Module "${repoRoot}/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration.ps1"`;
51+
? `try { Import-Module "${repoRoot}\\out\\vs\\workbench\\contrib\\terminal\\common\\scripts\\shellIntegration.psm1" } catch {}`
52+
: `Import-Module "${repoRoot}/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration.psm1"`;
5353
suite('should override args', async () => {
5454
const enabledExpectedResult = Object.freeze<IShellIntegrationConfigInjection>({
5555
type: 'injection',

0 commit comments

Comments
 (0)