[terminal] Fix PowerShell virtual env customizer test

The meaning of parameters of `LocalShellIntegrationInjector.injectShellIntegration` was changed in the scope of IJPL-176934.
So, the test was running with the shell integration of the New Terminal (Gen1).
Update the values to run it with the Classic Terminal shell integration.
But maybe it is worth adding the same test that will run with Reworked Terminal (Gen2) shell integration.

GitOrigin-RevId: 0bd43d4e1f65c7e42600d18d3b99b4177ea2639d
This commit is contained in:
Konstantin Hudyakov
2025-02-07 09:00:07 +02:00
committed by intellij-monorepo-bot
parent a6c3fa7948
commit 582fb251ce

View File

@@ -121,6 +121,6 @@ class PyVirtualEnvTerminalCustomizerTest {
.shellCommand(command.toList())
.shellIntegration(ShellIntegration(ShellType.POWERSHELL, null))
.build()
return LocalShellIntegrationInjector.injectShellIntegration(options, true, true)
return LocalShellIntegrationInjector.injectShellIntegration(options, false, false)
}
}