Skip to content

Commit

Permalink
call repr method in test
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjonesBSU committed Sep 18, 2024
1 parent 2413e3a commit 953371c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gmso/tests/abc/test_abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
class TestSite(BaseTest):
def test_molecule(self):
molecule = Molecule()
molecule
molecule.__repr__()
assert molecule.number == 0
assert molecule.isrigid is False

def test_residue(self):
residue = Residue()
residue
residue.__repr__()
assert residue.number == 0

def test_site(self):
Expand Down

0 comments on commit 953371c

Please sign in to comment.