From 8cf68731e010023e5dcae1f00991f4ac5b1b758b Mon Sep 17 00:00:00 2001 From: Jacob Richman Date: Wed, 12 Sep 2018 08:20:42 -0700 Subject: [PATCH] Increase initial delay for scroll_perf_test to try to reduce worst frame stats flakiness. --- dev/benchmarks/complex_layout/test_driver/scroll_perf_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/benchmarks/complex_layout/test_driver/scroll_perf_test.dart b/dev/benchmarks/complex_layout/test_driver/scroll_perf_test.dart index b6a5c6fa97..a1473b7a99 100644 --- a/dev/benchmarks/complex_layout/test_driver/scroll_perf_test.dart +++ b/dev/benchmarks/complex_layout/test_driver/scroll_perf_test.dart @@ -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.delayed(const Duration(milliseconds: 250)); + await Future.delayed(const Duration(milliseconds: 1000)); final Timeline timeline = await driver.traceAction(() async { // Find the scrollable stock list final SerializableFinder list = find.byValueKey(listKey);