From 547e2e95e7122fac582bc6f89eb8e9bd5100eca7 Mon Sep 17 00:00:00 2001 From: Jacob Richman Date: Wed, 12 Sep 2018 12:21:12 -0700 Subject: [PATCH] Revert "Increase initial delay for scroll_perf_test to try to reduce worst frame stats flakiness." (#21743) This reverts commit 8cf68731e010023e5dcae1f00991f4ac5b1b758b. --- 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 a1473b7a99..b6a5c6fa97 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: 1000)); + await Future.delayed(const Duration(milliseconds: 250)); final Timeline timeline = await driver.traceAction(() async { // Find the scrollable stock list final SerializableFinder list = find.byValueKey(listKey);