From a2fce5115d195d4b6cd534ee6a25cac54bb6c12b Mon Sep 17 00:00:00 2001 From: ssun30 Date: Fri, 15 Mar 2024 15:27:09 -0400 Subject: [PATCH] Fixed a typo in test lose charge --- test/rmgpy/molecule/groupTest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/rmgpy/molecule/groupTest.py b/test/rmgpy/molecule/groupTest.py index 8aa98a1826e..1a6c3d2879b 100644 --- a/test/rmgpy/molecule/groupTest.py +++ b/test/rmgpy/molecule/groupTest.py @@ -338,7 +338,7 @@ def test_apply_action_lose_charge(self): assert a in atom.atomtype,"LOSE_CHARGE on {0} gave {1} not {2}".format(atomtype, atom.atomtype, atomtype.decrement_charge) # self.assertEqual(atom0.radical_electrons, [r - 1 for r in atom.radical_electrons]) - assert atom0.charge == [c - 1 for c in atom.charge] + assert atom0.charge == [c + 1 for c in atom.charge] assert atom0.label == atom.label assert atom0.lone_pairs == atom.lone_pairs except ActionError: