From 734a5a9aad79672ea3fca70eead2d681129d702f Mon Sep 17 00:00:00 2001 From: Haroun El Omri Date: Sat, 12 Jul 2025 12:02:18 +0200 Subject: [PATCH] Change the message sent to IntelliJ when starting the test suites to the correct one. --- flutter-idea/src/io/flutter/test/DartTestEventsConverterZ.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flutter-idea/src/io/flutter/test/DartTestEventsConverterZ.java b/flutter-idea/src/io/flutter/test/DartTestEventsConverterZ.java index f2f2028cd..fc50cd3ed 100644 --- a/flutter-idea/src/io/flutter/test/DartTestEventsConverterZ.java +++ b/flutter-idea/src/io/flutter/test/DartTestEventsConverterZ.java @@ -401,7 +401,7 @@ private boolean handleStart(JsonObject obj) throws ParseException { mySuiteData.clear(); mySuitCount = 0; - return doProcessServiceMessages(ServiceMessageBuilder.testStarted("").toString()); + return doProcessServiceMessages(ServiceMessageBuilder.testsStarted().toString()); } @SuppressWarnings("RedundantThrows")