Skip to content

Commit

Permalink
fixing assert
Browse files Browse the repository at this point in the history
  • Loading branch information
atalyaalon committed Oct 10, 2024
1 parent 80944d8 commit 1ca5f39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_news_flash_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def test_add_location_qualifiction_history(self, can, current_user, get_current_
saved_location = json.loads(location_verifiction_history["location_after_change"])
saved_road_segment_id = saved_location["road_segment_id"]
saved_road_num = saved_location["road1"]
self.assertEqual(saved_road_segment_id, values["road_segment_id"])
self.assertEqual(saved_road_segment_id, int(values["road_segment_id"])
self.assertEqual(saved_road_num, float(values["road1"]))
self.assertEqual(
values["newsflash_location_qualification"],
Expand Down

0 comments on commit 1ca5f39

Please sign in to comment.