From 975ea595e90d2bc1c135afa9877079daf37a4ae7 Mon Sep 17 00:00:00 2001 From: Michael Goderbauer Date: Thu, 17 Jan 2019 12:23:55 -0800 Subject: [PATCH] Fix missing const analyzer warning (#26716) Introduced by merging an old PR (https://github.com/flutter/flutter/pull/21157). --- packages/flutter/test/widgets/scrollable_of_test.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/flutter/test/widgets/scrollable_of_test.dart b/packages/flutter/test/widgets/scrollable_of_test.dart index 291a8213d51..ebd88810e42 100644 --- a/packages/flutter/test/widgets/scrollable_of_test.dart +++ b/packages/flutter/test/widgets/scrollable_of_test.dart @@ -91,8 +91,8 @@ void main() { notification = value; return false; }, - child: SingleChildScrollView( - child: const SizedBox(height: 1200.0) + child: const SingleChildScrollView( + child: SizedBox(height: 1200.0) ) ));