Skip to content

Commit

Permalink
Fixed name
Browse files Browse the repository at this point in the history
  • Loading branch information
MOchiara authored Nov 12, 2024
1 parent fde675f commit fc72db6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ def test_vert_vel():
tools.plot_combined_velocity_profiles(ds_out_dives, ds_out_climbs)
# extra tests for ramsey calculations of DEPTH_Z
ds_climbs = ds_climbs.drop_vars(['DEPTH_Z'])
tools.ramsey_binavg(ds_climbs, var='VERT_CURR_MODEL', dz=10)
tools.compute_ramsey_binavg(ds_climbs, var='VERT_CURR_MODEL', dz=10)
ds_climbs = ds_climbs.drop_vars(['LATITUDE'])
with pytest.raises(KeyError) as e:
tools.ramsey_binavg(ds_climbs, var='VERT_CURR_MODEL', dz=10)
tools.compute_ramsey_binavg(ds_climbs, var='VERT_CURR_MODEL', dz=10)


def test_depth_z():
Expand Down

0 comments on commit fc72db6

Please sign in to comment.