removed further check for specific entry

Co-Authored-By: Andrew Johnson <drewej@protonmail.com>
This commit is contained in:
billingsley-john 2020-03-26 14:33:44 +00:00 committed by GitHub
parent a48f679b4e
commit 08849c3fad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -230,7 +230,7 @@ def test_get_elements():
# test addition of a single element
m.add_element('Li', 0.2)
assert 'Li' in m.get_elements()
assert m.get_elements() == ["Li"]
# test that adding the same element
m.add_element('Li', 0.3)
@ -246,7 +246,7 @@ def test_get_elements():
# test removal of nuclides
m.remove_nuclide('O16')
m.remove_nuclide('O17')
assert m.get_elements() == ["Si", "Li"]
assert m.get_elements() == ["Li", "Si"]
def test_get_nuclide_densities(uo2):