Skip to content

Commit 87ecfae

Browse files
committed
extent crs should always be string
1 parent 72fc12e commit 87ecfae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_views_execute.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1054,7 +1054,7 @@ def test_aggregate_spatial_vector_cube_basic(api, feature_collection_test_path):
10541054
res = api.check_result(pg)
10551055

10561056
params = dummy_backend.last_load_collection_call("S2_FOOBAR")
1057-
assert params["spatial_extent"] == {"west": 277438.26352113695, "south": 110530.15880237566, "east": 722056.3830076031, "north": 442397.8228986237, "crs": 32631}
1057+
assert params["spatial_extent"] == {"west": 277438.26352113695, "south": 110530.15880237566, "east": 722056.3830076031, "north": 442397.8228986237, "crs": "EPSG:32631"}
10581058
assert isinstance(params["aggregate_spatial_geometries"], DriverVectorCube)
10591059

10601060
assert res.json == DictSubSet(

0 commit comments

Comments
 (0)