Skip to content

Commit

Permalink
Another attempt to fix tests on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
niconoe committed Jul 23, 2024
1 parent 4aeead7 commit 8f0c87e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions dashboard/tests/views/test_public_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,24 +199,24 @@ def test_observation_json_short_results(self):
expected_data = [
{
"id": self.obs1.pk,
"lat": 50.48940999999999,
"lon": 5.095129999999999,
"lat": self.obs1.lat,
"lon": self.obs1.lon,
"scientificName": "Procambarus fallax",
"speciesId": self.first_species.pk,
"date": "2021-09-13",
},
{
"id": self.obs2.pk,
"lat": 50.647279999999995,
"lon": 4.35978,
"lat": self.obs2.lat,
"lon": self.obs2.lon,
"scientificName": "Orconectes virilis",
"speciesId": self.second_species.pk,
"date": "2021-09-13",
},
{
"id": self.obs3.pk,
"lat": 50.647279999999995,
"lon": 4.35978,
"lat": self.obs3.lat,
"lon": self.obs3.lon,
"scientificName": "Orconectes virilis",
"speciesId": self.second_species.pk,
"date": "2021-10-08",
Expand Down

0 comments on commit 8f0c87e

Please sign in to comment.