Skip to content

Commit

Permalink
Fix extra arg in unittest
Browse files Browse the repository at this point in the history
  • Loading branch information
oruebel committed Nov 7, 2024
1 parent f76889d commit 4c6f9dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/test_nwbzarrio.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ def test_read_nwb(self):
for reading a remote file with NWBZarrIO.read_nwb
"""
self.write_test_file()
nwbfile = NWBZarrIO.read_nwb(path=self.filepath, mode="r")
nwbfile = NWBZarrIO.read_nwb(path=self.filepath)
self.assertEqual(len(nwbfile.devices), 1)
self.assertEqual(nwbfile.experimenter, "Dr. Bilbo Baggins")

0 comments on commit 4c6f9dc

Please sign in to comment.