diff --git a/backend/geonature/tests/test_synthese.py b/backend/geonature/tests/test_synthese.py index e6a72888e8..4f79507265 100644 --- a/backend/geonature/tests/test_synthese.py +++ b/backend/geonature/tests/test_synthese.py @@ -180,7 +180,6 @@ def test_get_observations_for_web(self, users, synthese_data, taxon_attribut): r = self.client.get(url) assert r.status_code == 200 - print(r.json) validate_json(instance=r.json, schema=schema) # test on synonymy and taxref attrs @@ -381,8 +380,6 @@ def test_get_observations_for_web_filter_observers( filters = {"observers": observer_input} r = self.client.get(url_for("gn_synthese.get_observations_for_web"), json=filters) - for s in r.json["features"]: - print(s) assert len(r.json["features"]) == expected_length_synthese def test_get_synthese_data_cruved(self, app, users, synthese_data, datasets):