From 2e86ee3fc776960a282b876b31212a313c248e36 Mon Sep 17 00:00:00 2001 From: Mekhla Kapoor <54870020+mekhlakapoor@users.noreply.github.com> Date: Wed, 23 Oct 2024 17:45:59 -0700 Subject: [PATCH] fixes test --- tests/test_operations/test_ecephys_session.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_operations/test_ecephys_session.py b/tests/test_operations/test_ecephys_session.py index 53a15e2..bc11d06 100644 --- a/tests/test_operations/test_ecephys_session.py +++ b/tests/test_operations/test_ecephys_session.py @@ -152,7 +152,7 @@ def test_fetch_ecephys_sessions_success(self): self.assertEqual(len(ecephys_session.streams), 1) self.assertEqual(ecephys_session.streams[0].daq_names, ["DAQ1", "DAQ2"]) self.assertEqual(len(ecephys_session.streams[0].stream_modules), 2) - self.assertIsNone(ecephys_session.stimulus_epochs) + self.assertEqual(ecephys_session.stimulus_epochs, []) def test_fetch_ecephys_sessions_handle_exception(self): """Tests that exception is handled as expected"""