Skip to content

Commit

Permalink
[Fixes #257] Fix coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiagiupponi committed Jul 23, 2024
1 parent 2b031e7 commit 2ea6bb5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion importer/handlers/common/remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def can_handle(_data) -> bool:
"""
if "url" in _data:
return True
return True
return False

@staticmethod
def is_valid_url(url):
Expand Down
4 changes: 2 additions & 2 deletions importer/handlers/tiles3d/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,8 +399,8 @@ def test_set_bbox_from_bounding_volume_sphere_with_transform(self):

self.assertEqual(resource.bbox_x0, -75.61213927392595)
self.assertEqual(resource.bbox_x1, -75.61204934172301)
self.assertEqual(resource.bbox_y0, 40.04248564532361)
self.assertEqual(resource.bbox_y1, 40.04257557752655)
self.assertEqual(resource.bbox_y0, 40.042485645323616)
self.assertEqual(resource.bbox_y1, 40.042575577526556)

os.remove("/tmp/tileset.json")

Expand Down

0 comments on commit 2ea6bb5

Please sign in to comment.