Skip to content

Commit

Permalink
fix: switch to assertDictEqual for dict comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
merydian committed Aug 23, 2024
1 parent e61884e commit 4fb4d32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def test_build_default_parameters(self):
"options": {},
}

self.assertAlmostEqual(params, test_params)
self.assertDictEqual(params, test_params)

def test_isochrones(self):
response = {
Expand Down

0 comments on commit 4fb4d32

Please sign in to comment.