From 7a86f21feccc5d0942167fda5a6cf78c1aac1bb3 Mon Sep 17 00:00:00 2001 From: "vadim.lomshakov" Date: Sun, 9 Jul 2017 19:33:00 +0300 Subject: [PATCH] fixed test --- .../execution/process/RunnerMediatedCommandLineTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/platform-tests/testSrc/com/intellij/execution/process/RunnerMediatedCommandLineTest.java b/platform/platform-tests/testSrc/com/intellij/execution/process/RunnerMediatedCommandLineTest.java index 439e378646db..18e3c5dbcf53 100644 --- a/platform/platform-tests/testSrc/com/intellij/execution/process/RunnerMediatedCommandLineTest.java +++ b/platform/platform-tests/testSrc/com/intellij/execution/process/RunnerMediatedCommandLineTest.java @@ -32,7 +32,7 @@ public class RunnerMediatedCommandLineTest extends GeneralCommandLineTest { @NotNull @Override protected GeneralCommandLine postProcessCommandLine(@NotNull GeneralCommandLine commandLine) { - boolean injected = RunnerMediator.injectRunnerCommand(super.postProcessCommandLine(commandLine)); + boolean injected = RunnerMediator.injectRunnerCommand(super.postProcessCommandLine(commandLine), false); assumeTrue("runner mediator not found", injected); return commandLine; }