We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 027e90b commit c97b516Copy full SHA for c97b516
tests/integration/test_app_restricted.py
@@ -51,7 +51,7 @@ async def test_authorised_application_not_supported_for_user_restricted(
51
+ response.status_code
52
)
53
54
- assert response.status_code == None
+ assert response.text == ""
55
56
assert (
57
response.headers[RenamedHeader.CORRELATION_ID.original]
tests/integration/test_headers.py
@@ -109,7 +109,7 @@ async def test_headers_on_echo_target_with_app_restricted_business_function(
109
110
111
response_body = response.text
112
- assert response_body == None, (
+ assert response_body == "", (
113
"Expected no response body of the response when attempting to call the endpoint, but instead received "
114
+ response_body
115
0 commit comments