We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d7459d commit 59bf75cCopy full SHA for 59bf75c
smact/tests/test_core.py
@@ -47,7 +47,8 @@ def test_element_dictionary(self):
47
newlist = ["O", "Rb", "W"]
48
dictionary = smact.element_dictionary(newlist, TEST_OX_STATES)
49
self.assertEqual(dictionary["O"].crustal_abundance, 461000.0)
50
- self.assertEqual(dictionary["Rb"].oxidation_states, [-1, 1])
+ self.assertEqual(dictionary["Rb"].oxidation_states_smact14, [-1, 1])
51
+ self.assertEqual(dictionary["Rb"].oxidation_states, [1])
52
self.assertEqual(dictionary["Rb"].oxidation_states_custom, [-1, 1])
53
self.assertEqual(dictionary["W"].name, "Tungsten")
54
self.assertTrue("Rn" in smact.element_dictionary())
0 commit comments