Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jcadam14 committed Nov 19, 2024
1 parent 8ca48b2 commit c35c33f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 2 additions & 4 deletions tests/test_authentication.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,12 @@ def test_unauthed_endpoints(
)
assert res.status_code == 403

res = client.post(
"/internal/confirmation/send"
)
res = client.post("/internal/confirmation/send")
assert res.status_code == 200

def test_authed_endpoints(
self, mocker: MockerFixture, app_fixture: FastAPI, authed_user_mock: Mock
):
):
client = TestClient(app_fixture)
res = client.post(
"/public/case/send",
Expand Down
6 changes: 2 additions & 4 deletions tests/test_send.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,6 @@ def test_confirmation_send(
self, mocker: MockerFixture, app_fixture: FastAPI, full_user_mock: Mock
):
client = TestClient(app_fixture)
res = client.post(
"/internal/confirmation/send"
)
res = client.post("/internal/confirmation/send")
assert res.status_code == 200
assert res.json() == "Called internal send"
assert res.json() == "Called internal send"

0 comments on commit c35c33f

Please sign in to comment.