test(imap-move): satisfy require_trailing_commas in COPYUID-less test

`dart analyze --fatal-infos` (used by CI but not by my local
`flutter analyze` invocation) flagged the inline `searchResults`
literal as missing a trailing comma. Move the literal to a
`const` map with a trailing comma so the lint passes.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
agentloop
2026-06-10 17:51:39 +00:00
co-authored by Claude Opus 4.7
parent 0141d86361
commit 29bc403180
+2 -2
View File
@@ -1181,8 +1181,8 @@ void main() {
const criteria = 'HEADER Message-ID "$messageId"';
final spy = SnoozeSpyImapClient(
// No copyUidValidity → no COPYUID in the MOVE response.
searchResults: {
criteria: const [99]
searchResults: const {
criteria: [99],
},
);
final r = _makeRepos(imapConnect: (_, __, ___) async => spy);