Skip to content

Commit a2fce51

Browse files
ssun30rwest
authored andcommitted
Fixed a typo in test lose charge
1 parent 9a07b44 commit a2fce51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/rmgpy/molecule/groupTest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ def test_apply_action_lose_charge(self):
338338
assert a in atom.atomtype,"LOSE_CHARGE on {0} gave {1} not {2}".format(atomtype, atom.atomtype,
339339
atomtype.decrement_charge)
340340
# self.assertEqual(atom0.radical_electrons, [r - 1 for r in atom.radical_electrons])
341-
assert atom0.charge == [c - 1 for c in atom.charge]
341+
assert atom0.charge == [c + 1 for c in atom.charge]
342342
assert atom0.label == atom.label
343343
assert atom0.lone_pairs == atom.lone_pairs
344344
except ActionError:

0 commit comments

Comments
 (0)