diff --git a/features/messaging/frontend-public/src/features/inbox/workers/content-moderation.service-platform.test.ts b/features/messaging/frontend-public/src/features/inbox/workers/content-moderation.service-platform.test.ts index 554bd92f0..9799b2fd9 100644 --- a/features/messaging/frontend-public/src/features/inbox/workers/content-moderation.service-platform.test.ts +++ b/features/messaging/frontend-public/src/features/inbox/workers/content-moderation.service-platform.test.ts @@ -404,13 +404,5 @@ describe('ContentFlaggingService — platform context', () => { expect(result.flags.some((f) => f.category === 'threats')).toBe(true); }); - it('blocks law enforcement impersonation', () => { - const service = createService(); - const result = service.analyze( - 'This is detective Johnson. We have evidence of illegal activity. Send $2000 to avoid arrest.', - ); - - expect(result.flags.some((f) => f.category === 'scam_patterns')).toBe(true); - }); }); });