From 3faea98891ce43b772dc94366a45f1c3b99d102c Mon Sep 17 00:00:00 2001 From: Will Pfleger Date: Mon, 27 Jul 2026 10:56:58 -0700 Subject: [PATCH] fix(mobile): match markContextRead signature in activity test fake (#3158) Main's Mobile Analyze job fails with `invalid_override` on `_FakeReadStateNotifier.markContextRead`. The fake was added in #2889 against the then-current `ReadStateNotifier.markContextRead(String, int)`. The forced-unread work added an optional named `clearForcedMessages` param to the real method. Both PRs were green independently; the semantic conflict only surfaced once both were on main. The fake tracks read state only, so it accepts the flag and ignores it. Signed-off-by: Will Pfleger