Skip to content

Commit

Permalink
Update exception handling tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubsvehla committed Nov 15, 2024
1 parent 876b9b2 commit 9520b32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_asgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,10 +319,10 @@ def test_http_asgi_scope_from_request() -> None:
@pytest.mark.parametrize(
"propagate_exceptions, testing, raises",
[
(True, False, False),
(True, False, True),
(True, True, True),
(False, True, True),
(False, False, True),
(False, False, False),
],
)
async def test__handle_exception(propagate_exceptions: bool, testing: bool, raises: bool) -> None:
Expand Down

0 comments on commit 9520b32

Please sign in to comment.