Skip to content

Commit

Permalink
Decouple integration tests with lambda conf
Browse files Browse the repository at this point in the history
  • Loading branch information
dichn committed Jan 18, 2022
1 parent 4179bd7 commit c513048
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/integration/test_exodus.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import json
import re

import pytest
import requests
Expand Down Expand Up @@ -42,7 +43,7 @@ def test_header_cache_control(cdn_test_url, testdata_path):
r = requests.get(url)
print(json.dumps(dict(r.headers), indent=2))
assert r.status_code == 200
assert r.headers["cache-control"] == "max-age=600"
assert re.match("^max-age=[0-9]+$", r.headers["cache-control"])


def test_header_want_digest_GET(cdn_test_url):
Expand Down

0 comments on commit c513048

Please sign in to comment.