Skip to content

Commit 2d9127b

Browse files
committed
fix
1 parent 763dc31 commit 2d9127b

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

.github/workflows/tests/test_raster.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,9 @@
88
def test_raster_api():
99
"""test api."""
1010
# 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"})
11+
resp = httpx.get(f"{raster_endpoint}/healthz")
1912
assert resp.status_code == 200
2013
assert resp.headers["content-type"] == "application/json"
21-
assert resp.headers["content-encoding"] == "br"
2214

2315

2416
def test_mosaic_api():

0 commit comments

Comments
 (0)