We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd06568 commit 164b14eCopy full SHA for 164b14e
tests/unit_tests/test_behavior.py
@@ -30,4 +30,17 @@ def test_pass_check_spatial_series_dims():
30
reference_frame="reference_frame",
31
)
32
33
+ assert check_spatial_series_dims(spatial_series) is None
34
+
35
36
+def test_pass_check_spatial_series_dims_1d():
37
38
+ spatial_series = SpatialSeries(
39
+ name="SpatialSeries",
40
+ description="description",
41
+ data=np.ones((10,)),
42
+ rate=3.0,
43
+ reference_frame="reference_frame",
44
+ )
45
46
assert check_spatial_series_dims(spatial_series) is None
0 commit comments