Skip to content

Commit 270a0bd

Browse files
authored
Change the message sent to IntelliJ when starting the test suites to the correct one (#8330)
This is the cause of the error mentioned in #8325. Previously, the correct message was being sent hard-coded and was supposed to be replaced by `ServiceMessageBuilder.testsStarted()` once the method was available. Instead, `ServiceMessageBuilder.testStarted("")` was used which changes the message to `##teamcity[testStarted name='']` from `##teamcity[enteredtheMatrix]` (hence the error). This one-liner just replaces the erroneous call to the correct one.
1 parent cfb0935 commit 270a0bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flutter-idea/src/io/flutter/test/DartTestEventsConverterZ.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ private boolean handleStart(JsonObject obj) throws ParseException {
401401
mySuiteData.clear();
402402
mySuitCount = 0;
403403

404-
return doProcessServiceMessages(ServiceMessageBuilder.testStarted("").toString());
404+
return doProcessServiceMessages(ServiceMessageBuilder.testsStarted().toString());
405405
}
406406

407407
@SuppressWarnings("RedundantThrows")

0 commit comments

Comments
 (0)