Skip to content

Commit

Permalink
Merge pull request #6552 from swims-hjkl/issue/test_header_validation
Browse files Browse the repository at this point in the history
#6551  - assert statements for test test_header_validation
  • Loading branch information
nateprewitt committed Oct 18, 2023
2 parents b55bb15 + a8e9c1b commit 839a8ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_requests.py
Original file line number Diff line number Diff line change
Expand Up @@ -1702,7 +1702,7 @@ def test_header_validation(self, httpbin):
}
r = requests.get(httpbin("get"), headers=valid_headers)
for key in valid_headers.keys():
valid_headers[key] == r.request.headers[key]
assert valid_headers[key] == r.request.headers[key]

@pytest.mark.parametrize(
"invalid_header, key",
Expand Down

0 comments on commit 839a8ed

Please sign in to comment.