Skip to content

Commit

Permalink
removed shape asserts within data tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ESadek-MO committed Dec 12, 2024
1 parent 95c09e1 commit b2fb2f8
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions lib/iris/tests/unit/data_manager/test_DataManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,6 @@ def test_nd_lazy_to_dataless(self):
self.assertTrue(dm.has_lazy_data())
dm.data = None
self.assertTrue(dm.core_data() is None)
self.assertTrue(dm.shape == shape)

def test_nd_real_to_dataless(self):
shape = (2, 3, 4)
Expand All @@ -473,7 +472,6 @@ def test_nd_real_to_dataless(self):
self.assertFalse(dm.has_lazy_data())
dm.data = None
self.assertTrue(dm.core_data() is None)
self.assertTrue(dm.shape == shape)

def test_dataless_to_nd_lazy(self):
shape = (2, 3, 4)
Expand Down

0 comments on commit b2fb2f8

Please sign in to comment.