fix - Wrong status code returned for test completion (#1532)

This commit is contained in:
Sheng Chen 2024-07-29 14:21:39 +08:00 коммит произвёл GitHub
Родитель f7f93d4889
Коммит e4d2842501
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -201,7 +201,7 @@ public class GradleBuildClient implements BuildClient {
Arrays.asList(testParts, testStatus.getValue(), null, testFinishEx.getStackTrace()))); // TODO: test duration is missing
} else if (Objects.equals(params.getDataKind(), TaskDataKind.TEST_REPORT)) {
lsClient.sendNotification(new ExecuteCommandParams("java.gradle.buildServer.onDidFinishTestRun",
Arrays.asList(params.getTaskId().getId(), params.getMessage())));
Arrays.asList(params.getStatus().getValue(), params.getMessage())));
} else {
Either<String, Integer> id = Either.forLeft(params.getTaskId().getId());
WorkDoneProgressEnd workDoneProgressEnd = new WorkDoneProgressEnd();