We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2903b9a commit 59a008cCopy full SHA for 59a008c
lib/iris/tests/unit/cube/test_CubeList.py
@@ -308,7 +308,7 @@ def test_realise_data(self):
308
# _lazy_data.co_realise_cubes.
309
mock_cubes_list = [mock.Mock(ident=count) for count in range(3)]
310
test_cubelist = CubeList(mock_cubes_list)
311
- call_patch = self.patch('iris.cube._lazy.co_realise_cubes')
+ call_patch = self.patch('iris._lazy_data.co_realise_cubes')
312
test_cubelist.realise_data()
313
# Check it was called once, passing cubes as *args.
314
self.assertEqual(call_patch.call_args_list,
0 commit comments