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 17ecb82 commit 90d0063Copy full SHA for 90d0063
tests/test_http.py
@@ -343,9 +343,7 @@ def test_truesendall_with_dump_from_recording_and_ignored_headers(self):
343
responses = json.load(f)
344
345
for key, value in responses["httpbin.local"]["80"].items():
346
- assert (
347
- "Authorization" not in value["request"]
348
- ), f"'Authorization' header found in request ID: {key}"
+ self.assertNotIn("Authorization", value["request"])
349
350
@mocketize
351
def test_post_file_object(self):
0 commit comments