Skip to content

Commit

Permalink
fix: debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
paulschreiber committed Sep 4, 2024
1 parent 56643bd commit 040dc04
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions terraso_backend/tests/graphql/test_shared_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,8 +466,11 @@ 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
logger.info("-----expected----------------------")
logger.info(expected_json["features"])
logger.info("-----actual----------------------")
logger.info(json.loads(data_entry_result["geojson"])["features"])
logger.info("-----done----------------------")
assert json.loads(data_entry_result["geojson"])["features"] == expected_json["features"]


Expand Down

0 comments on commit 040dc04

Please sign in to comment.