Skip to content

Commit

Permalink
tests: remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
bouttier committed Dec 18, 2023
1 parent 85d6931 commit b25dca3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions backend/geonature/tests/test_synthese.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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):
Expand Down

0 comments on commit b25dca3

Please sign in to comment.