Skip to content

Commit

Permalink
Fix data manager unit test.
Browse files Browse the repository at this point in the history
  • Loading branch information
bjlittle committed Jun 22, 2017
1 parent 73dbba0 commit fbcca35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/iris/tests/unit/data_manager/test_DataManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ def test_with_lazy_mask_array__masked(self):
self.assertIsInstance(result, ma.MaskedArray)
self.assertIsNone(dm._realised_dtype)
self.assertEqual(dm.dtype, self.realised_dtype)
self.assertArrayEqual(result, self.lazy_mask_array_masked.compute())
self.assertArrayEqual(result, self.mask_array_masked)

def test_with_real_masked_constant(self):
masked_data = ma.masked_array([666], mask=True, dtype=np.dtype('f8'))
Expand Down

0 comments on commit fbcca35

Please sign in to comment.