From fdafb18426dead0bbd37a1f7fa53e7ff5c94f028 Mon Sep 17 00:00:00 2001 From: xvlaurent Date: Mon, 4 Nov 2024 07:59:45 +0000 Subject: [PATCH] Fix PDBx test. --- tests/structure/test_pdbx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/structure/test_pdbx.py b/tests/structure/test_pdbx.py index a105a259b..96123294f 100644 --- a/tests/structure/test_pdbx.py +++ b/tests/structure/test_pdbx.py @@ -85,7 +85,7 @@ def test_split_one_line(cif_line, expected_fields): """ Test whether values that have an embedded quote are properly escaped. """ - assert pdbx.cif._split_one_line(cif_line) == expected_fields + assert list(pdbx.cif._split_one_line(cif_line)) == expected_fields @pytest.mark.parametrize(