Skip to content

Commit e05a67f

Browse files
[devicelab] less sensitivity to whitespace in flutter_performance_test testing (flutter#58175)
1 parent 5663e02 commit e05a67f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/devicelab/bin/tasks/flutter_test_performance.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Future<int> runTest({bool coverage = false}) async {
5959
} else if (step.index < TestStep.runningPubGet.index && entry == 'Running "flutter pub get" in automated_tests...') {
6060
// ignore this line
6161
step = TestStep.runningPubGet;
62-
} else if (step.index < TestStep.testWritesFirstCarriageReturn.index && entry == '') {
62+
} else if (step.index <= TestStep.testWritesFirstCarriageReturn.index && entry.trim() == '') {
6363
// we have a blank line at the start
6464
step = TestStep.testWritesFirstCarriageReturn;
6565
} else {

0 commit comments

Comments
 (0)