Skip to content

Commit a86cfa2

Browse files
committed
update docstring
1 parent c522eb1 commit a86cfa2

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/expedition/test_simulate_schedule.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def test_time_in_minutes_in_ship_schedule() -> None:
6969

7070

7171
def test_ship_path_inside_domain() -> None:
72-
"""Test that the ship path (and therefore where underway measurements will be taken) is inside the domain defined by the waypoints (which determines the fieldset bounds)."""
72+
"""Test that the ship path (here represented by underway ADCP measurement sites) is inside the domain defined by the waypoints (which determines the fieldset bounds)."""
7373
base_time = datetime.strptime("2022-01-01T00:00:00", "%Y-%m-%dT%H:%M:%S")
7474

7575
projection = pyproj.Geod(ellps="WGS84")
@@ -114,6 +114,7 @@ def test_ship_path_inside_domain() -> None:
114114
min(adcp_lons),
115115
)
116116

117+
# check adcp route is within wp bounds
117118
assert adcp_max_lat <= wp_max_lat
118119
assert adcp_min_lat >= wp_min_lat
119120
assert adcp_max_lon <= wp_max_lon

0 commit comments

Comments
 (0)