Skip to content

Commit

Permalink
fix(tests/cdn): Make check case insensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
bkochendorfer committed Aug 7, 2024
1 parent 970e524 commit bd708b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/functional/test_cdn.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def test_cdn_cache(base_url):

# then test that caching is working
resp = requests.get(full_url, timeout=5)
assert "Hit" in resp.headers["x-cache"]
assert "hit" in resp.headers["x-cache"].lower()


@pytest.mark.cdn
Expand Down

0 comments on commit bd708b2

Please sign in to comment.