From fc3fd62fecc14e6c0d9a340cb90f26965f8b0e7b Mon Sep 17 00:00:00 2001 From: Mayank Jha Date: Sat, 4 Jan 2025 03:38:19 +0530 Subject: [PATCH] added trailing comma --- .../after_auth_screens/profile/edit_profile_page_test.dart | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/test/widget_tests/after_auth_screens/profile/edit_profile_page_test.dart b/test/widget_tests/after_auth_screens/profile/edit_profile_page_test.dart index e947c6e60..2363eb76e 100644 --- a/test/widget_tests/after_auth_screens/profile/edit_profile_page_test.dart +++ b/test/widget_tests/after_auth_screens/profile/edit_profile_page_test.dart @@ -578,9 +578,10 @@ Future main() async { suffixIcon: IconButton( key: const Key('LastNameEditIcon'), onPressed: () { - FocusScope.of(tester.element( - find.byKey(const Key('LastNameTextField')))) - .requestFocus(model.lastNameFocus); + FocusScope.of( + tester + .element(find.byKey(const Key('LastNameTextField'))), + ).requestFocus(model.lastNameFocus); }, icon: const Icon(Icons.edit), ),