more tests

This commit is contained in:
Kenneth Kehl
2025-07-01 10:27:44 -07:00
parent 95b72abbc8
commit 7ef5612308
2 changed files with 1 additions and 9 deletions

View File

@@ -73,11 +73,3 @@ def test_request_raises_http_error(mock_request, mock_jwt, client):
mock_request.side_effect = mock_exception
with pytest.raises(HTTPError):
client.get("/fail")
def main():
test_request_raises_http_error()
if __name__ == "__main__":
main()