Skip to content

Commit

Permalink
added more comments
Browse files Browse the repository at this point in the history
  • Loading branch information
winash12 committed Jul 18, 2024
1 parent 8f274b5 commit 78b8a2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/calc/test_calc_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -1573,7 +1573,7 @@ def test_bounding_box_mask():
'200', '150', '100', '70', '50', '30', '20', '10']
level = np.array(press)
level = level.astype(float) * 100
time = np.empty((4))
time = np.empty(4)
time[0] = np.datetime64(datetime.datetime(2023, 1, 14, 0))
time[1] = np.datetime64(datetime.datetime(2023, 1, 14, 6))
time[2] = np.datetime64(datetime.datetime(2023, 1, 14, 12))
Expand Down Expand Up @@ -1602,7 +1602,7 @@ def test_find_bounding_box_indices():
'200', '150', '100', '70', '50', '30', '20', '10']
level = np.array(press)
level = level.astype(float) * 100
time = np.empty((4))
time = np.empty(4)
time[0] = np.datetime64(datetime.datetime(2023, 1, 14, 0))
time[1] = np.datetime64(datetime.datetime(2023, 1, 14, 6))
time[2] = np.datetime64(datetime.datetime(2023, 1, 14, 12))
Expand Down Expand Up @@ -1633,7 +1633,7 @@ def test_get_vectorized_array_indices():
'200', '150', '100', '70', '50', '30', '20', '10']
level = np.array(press)
level = level.astype(float) * 100
time = np.empty((4))
time = np.empty(4)
time[0] = np.datetime64(datetime.datetime(2023, 1, 14, 0))
time[1] = np.datetime64(datetime.datetime(2023, 1, 14, 6))
time[2] = np.datetime64(datetime.datetime(2023, 1, 14, 12))
Expand Down

0 comments on commit 78b8a2c

Please sign in to comment.