Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jacquesfize committed Dec 15, 2023
1 parent d6b59e0 commit 8de09f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ref_geo/tests/test_ref_geo.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def test_get_areas_as_geojson(self, area_commune):
"""
type_code = area_commune.type_code
id_type = area_commune.id_type
first_comm = db.session.scalars(db.select(LAreas).where(LAreas.id_type == id_type)).first()
first_comm = db.session.scalars(select(LAreas).where(LAreas.id_type == id_type)).first()
# will test many responses are return
response = self.client.get(
url_for("ref_geo.get_areas"),
Expand Down

0 comments on commit 8de09f3

Please sign in to comment.