Unverified Commit e05a67f0 authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

[devicelab] less sensitivity to whitespace in flutter_performance_test testing (#58175)

parent 5663e026
......@@ -59,7 +59,7 @@ Future<int> runTest({bool coverage = false}) async {
} else if (step.index < TestStep.runningPubGet.index && entry == 'Running "flutter pub get" in automated_tests...') {
// ignore this line
step = TestStep.runningPubGet;
} else if (step.index < TestStep.testWritesFirstCarriageReturn.index && entry == '') {
} else if (step.index <= TestStep.testWritesFirstCarriageReturn.index && entry.trim() == '') {
// we have a blank line at the start
step = TestStep.testWritesFirstCarriageReturn;
} else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment