Fix failing chrome_dev_mode tests (#163346)

Help message when running web applications was changed in
https://github.com/flutter/flutter/pull/163268/files
This commit is contained in:
Ben Konyi 2025-02-14 17:08:26 -05:00 committed by GitHub
parent 644e46a3b3
commit 151f31ffb5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -70,7 +70,7 @@ TaskFunction createWebDevModeTest(String webDevice, bool enableIncrementalCompil
});
return;
}
if (line.contains('To hot restart')) {
if (line.contains('Hot restart')) {
// measure clean start-up time.
sw.stop();
measurements[kInitialStartupTime] = sw.elapsedMilliseconds;
@ -148,7 +148,7 @@ TaskFunction createWebDevModeTest(String webDevice, bool enableIncrementalCompil
});
return;
}
if (line.contains('To hot restart')) {
if (line.contains('Hot restart')) {
measurements[kSecondStartupTime] = sw.elapsedMilliseconds;
sw
..reset()