Skip to content

Commit

Permalink
Path as string in FicTrac test (#826)
Browse files Browse the repository at this point in the history
  • Loading branch information
h-mayorquin authored Apr 27, 2024
1 parent 62802c4 commit a62395e
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions tests/test_on_data/test_behavior_interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ class TestFicTracDataInterface(DataInterfaceTestMixin, unittest.TestCase):
interface_kwargs = [
dict(
file_path=str(BEHAVIOR_DATA_PATH / "FicTrac" / "sample" / "sample-20230724_113055.dat"),
configuration_file_path=BEHAVIOR_DATA_PATH / "FicTrac" / "sample" / "config.txt",
configuration_file_path=str(BEHAVIOR_DATA_PATH / "FicTrac" / "sample" / "config.txt"),
),
]

Expand Down Expand Up @@ -226,12 +226,6 @@ def check_read_nwb(self, nwbfile_path: str): # This is currently structured to

assert spatial_series.timestamps[0] == 0.0

# TODO: undo this skip in future PR
def check_run_conversion_default_backend_in_nwbconverter(
self, nwbfile_path: str, backend: Literal["hdf5", "zarr"] = "hdf5"
):
pass


class TestFicTracDataInterfaceWithRadius(DataInterfaceTestMixin, unittest.TestCase):
data_interface_cls = FicTracDataInterface
Expand Down

0 comments on commit a62395e

Please sign in to comment.