Skip to content

Commit

Permalink
Merge pull request #272 from azgabur/small_response_fix
Browse files Browse the repository at this point in the history
Fix capitalizazion in test_response_condition.py test
  • Loading branch information
pehala authored Nov 10, 2023
2 parents 65eccb6 + fca7cad commit fba5d9c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def test_skip_response(client, auth):
assert response.status_code == 200

# verify that response was not returned on a GET request
assert "simple" not in response.json()["headers"]
assert "Simple" not in response.json()["headers"]

response = client.post("/post", auth=auth)
assert response.status_code == 200
Expand Down

0 comments on commit fba5d9c

Please sign in to comment.