We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0301f33 commit 61530c2Copy full SHA for 61530c2
lib/src/test/java/org/sonarsource/scanner/lib/internal/facade/forked/JavaRunnerTest.java
@@ -72,7 +72,7 @@ void execute_whenInvalidRunner_shouldFail() {
72
void execute_shouldReturnFalseWhenNonZeroExitCode() {
73
JavaRunner runner = new JavaRunner(Paths.get("java"), JreCacheHit.DISABLED);
74
List<String> command = List.of("unknown-command");
75
- assertThat(runner.execute(command, "test", stdOut::add)).isFalse();
+ assertThat(runner.execute(command, null, stdOut::add)).isFalse();
76
}
77
78
0 commit comments