diff --git a/terraso_backend/tests/graphql/test_shared_data.py b/terraso_backend/tests/graphql/test_shared_data.py index 5add53eb1..6776728b3 100644 --- a/terraso_backend/tests/graphql/test_shared_data.py +++ b/terraso_backend/tests/graphql/test_shared_data.py @@ -14,6 +14,7 @@ # along with this program. If not, see https://www.gnu.org/licenses/. import json +import logging import os import tempfile import zipfile @@ -463,6 +464,8 @@ def test_data_entry_kml_to_geojson( assert data_entry_result["id"] == str(data_entry_kml.id) assert data_entry_result["name"] == data_entry_kml.name + logging.info(expected_json["features"]) + logging.info(json.loads(data_entry_result["geojson"])["features"]) assert json.loads(data_entry_result["geojson"])["features"] == expected_json["features"]