From 9c232d33c08caf6c836cc2424a33adc6fa7c2db2 Mon Sep 17 00:00:00 2001 From: Patrick Kunzmann Date: Wed, 8 Apr 2026 14:58:25 +0200 Subject: [PATCH] Fix failing `test_kekulization` test after RDKit update --- tests/interface/test_rdkit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/interface/test_rdkit.py b/tests/interface/test_rdkit.py index 9100322e7..f37c560ce 100644 --- a/tests/interface/test_rdkit.py +++ b/tests/interface/test_rdkit.py @@ -164,7 +164,7 @@ def test_kekulization(): or [ struc.BondType.AROMATIC_SINGLE if btype == struc.BondType.AROMATIC_DOUBLE - else struc.BondType.AROMATIC_SINGLE + else struc.BondType.AROMATIC_DOUBLE for btype in test_bond_types ] == ref_bond_types.tolist()