Linting/Formatting

This commit is contained in:
Renn F
2026-05-03 17:51:33 +02:00
parent 95c96d4ce3
commit 9bae446cbe
5 changed files with 14 additions and 31 deletions
@@ -305,9 +305,10 @@ async def test_cell_pm_cannot_claim_code_task_via_i_will_work_on() -> None:
body = env.as_dict()
assert body["error"] == "not_authorized"
assert "PM" in body["message"] or "code" in body["message"].lower()
assert "delegate" in body["remediate"].lower() or "developer" in body[
"remediate"
].lower()
assert (
"delegate" in body["remediate"].lower()
or "developer" in body["remediate"].lower()
)
task_svc.claim.assert_not_awaited()