From 01304572cb7f2966bbf86d4cb8d0ccff86a48b89 Mon Sep 17 00:00:00 2001 From: Claude Code Date: Wed, 10 Jun 2026 13:45:10 +0000 Subject: [PATCH] test(email-list): drop redundant accountId arg to satisfy --fatal-infos The CI dart analyze step runs with --fatal-infos so any avoid_redundant_argument_values info fails the build. The new EmailThreadListController test passed the default accountId explicitly, tripping the lint. Use the default instead. Co-Authored-By: Claude Opus 4.7 (1M context) --- test/widget/email_thread_list_controller_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/widget/email_thread_list_controller_test.dart b/test/widget/email_thread_list_controller_test.dart index 7945d36..9e5e7a7 100644 --- a/test/widget/email_thread_list_controller_test.dart +++ b/test/widget/email_thread_list_controller_test.dart @@ -93,7 +93,7 @@ void main() { test('multi-account threads are kept independent in the selection', () { final ctrl = EmailThreadListController() ..updateThreads([ - _t('a', accountId: 'acc-1'), + _t('a'), _t('b', accountId: 'acc-2'), ]); ctrl.selectAll();