Skip to content

Commit 1f778ea

Browse files
committed
fix assert error messaging
1 parent 6ebb41b commit 1f778ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/virtualship/instruments/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def __init__(
6363
wp.time for wp in expedition.schedule.waypoints if wp.time is not None
6464
]
6565
assert all(earlier <= later for earlier, later in pairwise(wp_times)), (
66-
"wp_times is not ascending order"
66+
"Waypoint times are not in ascending order"
6767
)
6868
self.wp_times = wp_times
6969

0 commit comments

Comments
 (0)