Skip to content

Commit

Permalink
remove duplicated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
CalCraven committed Dec 13, 2024
1 parent 5eec006 commit 0d5cf5c
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions mbuild/tests/test_compound.py
Original file line number Diff line number Diff line change
Expand Up @@ -2568,10 +2568,3 @@ def test_load_molfile(self):
def test_load_list_of_smiles(self):
cpd = mb.load(["C", "O"], smiles=True)
assert len(cpd.children) == 8

def test_reset_labels(self):
ethane = mb.load("CC", smiles=True)
Hs = ethane.particles_by_name("H")
ethane.remove(Hs, reset_labels=True)
ports = set(f"port[{i}]" for i in range(6))
assert ports.issubset(set(ethane.labels.keys()))

0 comments on commit 0d5cf5c

Please sign in to comment.