Skip to content

Commit 1a89b39

Browse files
committed
Fixed test
1 parent 5e1dbde commit 1a89b39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/slice/test_cm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,8 @@ def get_dataset(self):
241241
self.assertIsInstance(slice_source, MySliceSource)
242242
with slice_cm as slice_ds:
243243
self.assertIsInstance(slice_ds, xr.Dataset)
244-
self.assertEquals(slice_source.args, ("bibo",))
245-
self.assertEquals(
244+
self.assertEqual(slice_source.args, ("bibo",))
245+
self.assertEqual(
246246
slice_source.kwargs, {"a": 2, "b": True, "c": "nearest", "d": 3.14}
247247
)
248248

0 commit comments

Comments
 (0)