We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3edeaa7 commit 2c7e522Copy full SHA for 2c7e522
1 file changed
tests/test_handler_errors.py
@@ -7,7 +7,7 @@
7
8
def test_check_assertions_raises_handler_assertions(httpserver: HTTPServer):
9
def handler(_):
10
- assert 1 == 2
+ assert False
11
12
httpserver.expect_request("/foobar").respond_with_handler(handler)
13
@@ -69,7 +69,7 @@ def test_missing_matcher_raises_exception(httpserver):
69
70
def test_check_raises_errors_in_order(httpserver):
71
def handler1(_):
72
73
74
def handler2(_):
75
pass # does nothing
0 commit comments