diff --git a/tests/test_agents.py b/tests/test_agents.py index cdca1bc..1375a1b 100644 --- a/tests/test_agents.py +++ b/tests/test_agents.py @@ -50,9 +50,7 @@ def test_allows_normal_replies(self, msg): def test_opt_out_triggers_suppression(self): mock_db = MagicMock() - result = OutreachAgent.handle_inbound_reply( - message="STOP", lead_id="lead_001", db=mock_db - ) + result = OutreachAgent.handle_inbound_reply(message="STOP", lead_id="lead_001", db=mock_db) mock_db.suppress_lead.assert_called_once_with("lead_001") assert result["action"] == "opted_out"