We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 763dc31 commit 2d9127bCopy full SHA for 2d9127b
.github/workflows/tests/test_raster.py
@@ -8,17 +8,9 @@
8
def test_raster_api():
9
"""test api."""
10
# health
11
- resp = httpx.get(
12
- f"{raster_endpoint}/healthz", headers={"Accept-Encoding": "br, gzip"}
13
- )
14
- assert resp.status_code == 200
15
- assert resp.headers["content-type"] == "application/json"
16
- assert resp.headers["content-encoding"] == "gzip"
17
-
18
- resp = httpx.get(f"{raster_endpoint}/healthz", headers={"Accept-Encoding": "br"})
+ resp = httpx.get(f"{raster_endpoint}/healthz")
19
assert resp.status_code == 200
20
assert resp.headers["content-type"] == "application/json"
21
- assert resp.headers["content-encoding"] == "br"
22
23
24
def test_mosaic_api():
0 commit comments