Increase initial delay for scroll_perf_test to try to reduce worst frame stats flakiness.

This commit is contained in:
Jacob Richman 2018-09-12 08:20:42 -07:00 committed by GitHub
parent 66e5422375
commit 8cf68731e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ void main() {
// period of increased load on the device. Without this delay, the
// benchmark has greater noise.
// See: https://github.com/flutter/flutter/issues/19434
await Future<Null>.delayed(const Duration(milliseconds: 250));
await Future<Null>.delayed(const Duration(milliseconds: 1000));
final Timeline timeline = await driver.traceAction(() async {
// Find the scrollable stock list
final SerializableFinder list = find.byValueKey(listKey);