We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c7e522 commit 650dc6bCopy full SHA for 650dc6b
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 False
+ assert False # noqa: PT015
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