From 4c6f9dc64c09f5b679b94fd0a2580fe98d6f9eda Mon Sep 17 00:00:00 2001 From: Oliver Ruebel Date: Wed, 6 Nov 2024 18:08:46 -0800 Subject: [PATCH] Fix extra arg in unittest --- tests/unit/test_nwbzarrio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_nwbzarrio.py b/tests/unit/test_nwbzarrio.py index ef283d85..270f04e2 100644 --- a/tests/unit/test_nwbzarrio.py +++ b/tests/unit/test_nwbzarrio.py @@ -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")