Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Dec 24, 2024
1 parent f8c2dad commit ed75485
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/iris/tests/unit/data_manager/test_DataManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,12 @@ def test_lazy_with_lazy__dtype_failure(self):
self.assertFalse(dm1 == dm2)

def test_none(self):
dm1 = DataManager(data=None, shape=(1, ))
dm2 = DataManager(data=None, shape=(1, ))
dm1 = DataManager(data=None, shape=(1,))
dm2 = DataManager(data=None, shape=(1,))
self.assertTrue(dm1 == dm2)

def test_none_with_real(self):
dm1 = DataManager(data=None, shape=(1, ))
dm1 = DataManager(data=None, shape=(1,))
dm2 = DataManager(self.real_array)
self.assertFalse(dm1 == dm2)

Expand Down

0 comments on commit ed75485

Please sign in to comment.