Skip to content

Commit

Permalink
FutureWarnings based on Dataset.dims in test_io.py fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
thijsvl committed Jun 20, 2024
1 parent f1b79ed commit 9f6f13e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def example_data(self):
return stmtools.from_csv(path_example_csv)

def test_readcsv_dims(self, example_data):
assert example_data.dims == {"space": 2500, "time": 11}
assert example_data.sizes == {"space": 2500, "time": 11}

def test_readcsv_vars(self, example_data):
expected_columns = [
Expand Down

0 comments on commit 9f6f13e

Please sign in to comment.