Skip to content

Commit

Permalink
fix test_local_tiledb.py test
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbesnard1 committed Feb 25, 2025
1 parent 3dd5992 commit 8840313
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gedidb/tests/test_local_tiledb.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ def test_tiledb_dimensions(self):
lon_dim.domain, (-180.0, 180.0), "Longitude range mismatch"
)
# Check chunk size
self.assertEqual(lat_dim.tile, 1.0, "Latitude chunk size mismatch")
self.assertEqual(lon_dim.tile, 1.0, "Longitude chunk size mismatch")
self.assertEqual(lat_dim.tile, 0.5, "Latitude chunk size mismatch")
self.assertEqual(lon_dim.tile, 0.5, "Longitude chunk size mismatch")

def test_tiledb_attributes(self):
"""Test that TileDB attributes are correctly set."""
Expand Down

0 comments on commit 8840313

Please sign in to comment.