Skip to content

Commit

Permalink
fix numpy float regression test
Browse files Browse the repository at this point in the history
  • Loading branch information
joamatab committed Jun 2, 2023
1 parent 8f31085 commit c9291b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/test_get_bundle_all_angle.py
Expand Up @@ -27,7 +27,7 @@ def test_get_bundle_all_angle(
lengths = {}
for i, route in enumerate(routes):
c.add(route.references)
lengths[i] = route.length
lengths[i] = float(route.length)

if check:
data_regression.check(lengths)
Expand Down
4 changes: 2 additions & 2 deletions tests/test_get_bundle_all_angle/test_get_bundle_all_angle.yml
@@ -1,2 +1,2 @@
0: 78.60499999999999
1: 80.381
0: 78.60523731675374
1: 80.38148170516394

0 comments on commit c9291b8

Please sign in to comment.