From d0c4458b8096cd63e9f9db27fb51e04dcdb00911 Mon Sep 17 00:00:00 2001 From: Jenn Magder Date: Thu, 16 Jan 2020 17:15:00 -0800 Subject: [PATCH] Fix whitespace and commas in flutter_driver extension_test (#48982) --- .../test/src/real_tests/extension_test.dart | 47 ++++++++++--------- 1 file changed, 24 insertions(+), 23 deletions(-) diff --git a/packages/flutter_driver/test/src/real_tests/extension_test.dart b/packages/flutter_driver/test/src/real_tests/extension_test.dart index e5b0c8c0aed..7b8aa9e6adc 100644 --- a/packages/flutter_driver/test/src/real_tests/extension_test.dart +++ b/packages/flutter_driver/test/src/real_tests/extension_test.dart @@ -563,35 +563,36 @@ void main() { children: [ const Text('Hello1', key: ValueKey('text1')), Container( - height: 25.0, - child: RichText( - key: const ValueKey('text2'), - text: const TextSpan(text: 'Hello2') - ) + height: 25.0, + child: RichText( + key: const ValueKey('text2'), + text: const TextSpan(text: 'Hello2'), + ), ), Container( - height: 25.0, - child: EditableText( - key: const ValueKey('text3'), - controller: TextEditingController(text: 'Hello3'), - focusNode: FocusNode(), - style: const TextStyle(), - cursorColor: Colors.red, - backgroundCursorColor: Colors.black) + height: 25.0, + child: EditableText( + key: const ValueKey('text3'), + controller: TextEditingController(text: 'Hello3'), + focusNode: FocusNode(), + style: const TextStyle(), + cursorColor: Colors.red, + backgroundCursorColor: Colors.black, + ), ), Container( - height: 25.0, - child: TextField( - key: const ValueKey('text4'), - controller: TextEditingController(text: 'Hello4') - ) + height: 25.0, + child: TextField( + key: const ValueKey('text4'), + controller: TextEditingController(text: 'Hello4'), + ), ), Container( - height: 25.0, - child: TextFormField( - key: const ValueKey('text5'), - controller: TextEditingController(text: 'Hello5') - ) + height: 25.0, + child: TextFormField( + key: const ValueKey('text5'), + controller: TextEditingController(text: 'Hello5'), + ), ), ], ))