Skip to content

Commit

Permalink
updated case of target header based on output
Browse files Browse the repository at this point in the history
  • Loading branch information
fullerzz committed May 1, 2024
1 parent 8c563c2 commit bb98906
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_requests.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ def test_send_requests(request_map_collection: List[RequestMap]) -> None:
assert response.headers["Content-Type"] == "application/json"
if response.request_map.http_op == "POST":
assert response.headers is not None
assert "X-Test" in response.headers
assert "Test" == response.headers["X-Test"]
assert "x-test" in response.headers
assert "Test" == response.headers["x-test"]

def test_send_requests_with_exceptions(
request_map_collection: List[RequestMap],
Expand Down

0 comments on commit bb98906

Please sign in to comment.