From 54409c7b280aedc4205641075a93483eee418370 Mon Sep 17 00:00:00 2001 From: sneakers-the-rat Date: Wed, 14 Aug 2024 22:27:01 -0700 Subject: [PATCH] codespell istg --- 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 420a5ae..7e34c66 100644 --- a/nwb_linkml/tests/test_includes/test_hdmf.py +++ b/nwb_linkml/tests/test_includes/test_hdmf.py @@ -153,7 +153,7 @@ def test_dynamictable_mixin_colnames_ordered(): assert all([key1 == key2 for key1, key2 in zip(order, inst._columns)]) assert all(inst[0].columns == order) - # partial lists should append unnamed columsn at the end + # partial lists should append unnamed columns at the end partial_order = ["new_col_3", "new_col_2"] inst = MyDT(**cols, colnames=partial_order) assert inst.colnames == [*partial_order, "existing_col", "new_col_1"]