Skip to content

Commit 08eb0a7

Browse files
committed
fix test and changelog
1 parent 3b6fe15 commit 08eb0a7

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Upcoming
2+
### Fixes
3+
* `check_time_interval_time_columns` now only checks for `start_time` with `is_ascending_series` . [#382](https://github.com/NeurodataWithoutBorders/nwbinspector/pull/382)
24

35
# v0.4.28
46

tests/unit_tests/test_tables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def test_check_time_interval_time_columns():
8686

8787
assert check_time_interval_time_columns(time_intervals) == InspectorMessage(
8888
message=(
89-
"['start_time', 'stop_time'] are time columns but the values are not in ascending order. "
89+
"['start_time'] are time columns but the values are not in ascending order. "
9090
"All times should be in seconds with respect to the session start time."
9191
),
9292
importance=Importance.BEST_PRACTICE_VIOLATION,

0 commit comments

Comments
 (0)