From 362965daf5fb6536e7cac5541f42db58c58c1378 Mon Sep 17 00:00:00 2001 From: sneakers-the-rat Date: Wed, 7 Aug 2024 18:56:01 -0700 Subject: [PATCH] correct test for equality for series --- nwb_linkml/tests/test_includes/test_hdmf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nwb_linkml/tests/test_includes/test_hdmf.py b/nwb_linkml/tests/test_includes/test_hdmf.py index 2b5d47f..6ade3a2 100644 --- a/nwb_linkml/tests/test_includes/test_hdmf.py +++ b/nwb_linkml/tests/test_includes/test_hdmf.py @@ -164,7 +164,7 @@ def test_dynamictable_region_basic(electrical_series): # b) every other object in the chain is strictly validated, # so we assume if we got a right shaped df that it is the correct one. # feel free to @ me when i am wrong about this - assert row.id == 4 + assert all(row.id == 4) assert row.shape == (1, 7) # and we should still be preserving the model that is the contents of the cell of this row # so this is a dataframe row with a column "group" that contains an array of ElectrodeGroup