Skip to content

Commit

Permalink
[Core-266] Client: Fix vector tests for py3.8 (#12422)
Browse files Browse the repository at this point in the history
GitOrigin-RevId: f916a6e7ed43c4d8f9a16dddf41848f844591ac6
  • Loading branch information
stephencpope authored and Descartes Labs Build committed Jan 30, 2024
1 parent e2f09b3 commit a4d1ab4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion descarteslabs/core/vector/tests/test_vector.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def test_spatial_add_features(self):
[
{
"geometry": f["geometry"],
"properties": f["properties"] | {"uuid": str(uuid4())},
"properties": {**f["properties"], "uuid": str(uuid4())},
"type": "Feature",
}
for f in fc["features"]
Expand Down

0 comments on commit a4d1ab4

Please sign in to comment.