Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
h-mayorquin committed Oct 28, 2023
1 parent 3646bac commit ceac3e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_on_data/test_behavior_interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def check_read_nwb(self, nwbfile_path: str): # This is currently structured to
with NWBHDF5IO(path=nwbfile_path, mode="r", load_namespaces=True) as io:
nwbfile = io.read()

fictrac_position_container = nwbfile.processing["Behavior"].data_interfaces["FicTrac"]
fictrac_position_container = nwbfile.processing["behavior"].data_interfaces["FicTrac"]
assert isinstance(fictrac_position_container, Position)

assert len(fictrac_position_container.spatial_series) == 10
Expand Down Expand Up @@ -82,7 +82,7 @@ def check_read_nwb(self, nwbfile_path: str): # This is currently structured to
with NWBHDF5IO(path=nwbfile_path, mode="r", load_namespaces=True) as io:
nwbfile = io.read()

fictrac_position_container = nwbfile.processing["Behavior"].data_interfaces["FicTrac"]
fictrac_position_container = nwbfile.processing["behavior"].data_interfaces["FicTrac"]
assert isinstance(fictrac_position_container, Position)

assert len(fictrac_position_container.spatial_series) == 10
Expand Down

0 comments on commit ceac3e9

Please sign in to comment.