We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4a3ef0 commit 47e7787Copy full SHA for 47e7787
1 file changed
rmgpy/molecule/moleculeTest.py
@@ -1042,12 +1042,12 @@ def testPickle(self):
1042
1043
def testRadicalCH(self):
1044
"""
1045
- Test that the species [CH] has three radical electrons and a spin multiplicity of 4.
+ Test that the species [CH] has one radical electrons and a spin multiplicity of 2.
1046
1047
molecule = Molecule().fromSMILES('[CH]')
1048
- self.assertEqual(molecule.atoms[0].radicalElectrons, 3)
1049
- self.assertEqual(molecule.multiplicity, 4)
1050
- self.assertEqual(molecule.getRadicalCount(), 3)
+ self.assertEqual(molecule.atoms[0].radicalElectrons, 1)
+ self.assertEqual(molecule.multiplicity, 2)
+ self.assertEqual(molecule.getRadicalCount(), 1)
1051
1052
def testRadicalCH2(self):
1053
0 commit comments