File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -135,3 +135,8 @@ known-first-party = ["nwbinspector"]
135135skip = ' .git*,*.pdf,*.css'
136136check-hidden = true
137137ignore-words-list = ' assertin'
138+
139+ [dependency-groups ]
140+ dev = [
141+ " pytest>=8.4.2" ,
142+ ]
Original file line number Diff line number Diff line change @@ -66,9 +66,10 @@ def test_check_data_orientation():
6666 )
6767 ) == InspectorMessage (
6868 message = (
69- "Data may be in the wrong orientation. "
70- "Time should be in the first dimension, and is usually the longest dimension. "
71- "Here, another dimension is longer."
69+ "'test_time_series' data may be in the wrong orientation. "
70+ "Time should be the longest dimension, which is usually the first.\n "
71+ "Current shape: (2, 100).\n "
72+ "Suggestion: Transpose so the first dimension is 100."
7273 ),
7374 importance = Importance .CRITICAL ,
7475 check_function_name = "check_data_orientation" ,
You can’t perform that action at this time.
0 commit comments