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 2309b2c commit 76aa2b0Copy full SHA for 76aa2b0
tests/test_models_routes.py
@@ -165,6 +165,8 @@ def test_save_viewable_workflow_from_object(client):
165
assert response.json["geode_object"] == "EdgedCurve3D"
166
assert response.json["viewable_file_name"].endswith(".vtp")
167
168
- attr_resp = client.post("/opengeodeweb_back/vertex_attribute_names", json={"id": data_id})
+ attr_resp = client.post(
169
+ "/opengeodeweb_back/vertex_attribute_names", json={"id": data_id}
170
+ )
171
assert attr_resp.status_code == 200
172
assert isinstance(attr_resp.json.get("vertex_attribute_names", []), list)
0 commit comments