diff --git a/mbuild/tests/test_compound.py b/mbuild/tests/test_compound.py index 77934e56b..b7aee8c91 100644 --- a/mbuild/tests/test_compound.py +++ b/mbuild/tests/test_compound.py @@ -127,13 +127,13 @@ def test_bond_order(self, methane): C2.add_bond([carbon, carbon_clone], bond_order="double") bonds = [bond for bond in C2.bonds(return_bond_order=True)] - assert bonds[0][2]["bond_order"] == "double" + assert bonds[0][2]["bond_order"] == "double" # ensure we propagate bond order information when we clone a compound C2_clone = mb.clone(C2) bonds = [bond for bond in C2_clone.bonds(return_bond_order=True)] - assert bonds[0][2]["bond_order"] == "double" + assert bonds[0][2]["bond_order"] == "double" @pytest.mark.skipif(not has_rdkit, reason="RDKit is not installed") def test_convert_to_rdkit(self, methane):