Skip to content

Commit

Permalink
Missed doctest changes from f547662.
Browse files Browse the repository at this point in the history
  • Loading branch information
trexfeathers committed Oct 23, 2024
1 parent 85410ba commit fdbbd37
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/iris/common/resolve.py
Original file line number Diff line number Diff line change
Expand Up @@ -2358,16 +2358,16 @@ def cube(self, data, in_place=False):
>>> resolver.map_rhs_to_lhs
True
>>> cube1.data.sum()
124652160.0
np.float32(124652160.0)
>>> zeros.shape
(240, 37, 49)
>>> zeros.sum()
0.0
np.float32(0.0)
>>> result = resolver.cube(zeros, in_place=True)
>>> result is cube1
True
>>> cube1.data.sum()
0.0
np.float32(0.0)
"""
from iris.cube import Cube
Expand Down

0 comments on commit fdbbd37

Please sign in to comment.