Skip to content

Commit

Permalink
Update test_unit_MSX.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Mariosmsk committed Apr 16, 2024
1 parent da0d4ca commit 427f4bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions epyt/tests/test_unit_MSX.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def setUp(self):
inpname = os.path.join(DIRNAME, 'msx-examples', 'Net3-NH2CL.inp')
msxfile = os.path.join(DIRNAME, 'msx-examples', 'Net3-NH2CL.msx')
self.epanetClass = epanet(inpname, msx=True)
self.msxClass = epanetmsxapi(msxfile)
self.msxClass = self.epanetClass.loadMSXFile(msxfile)

def tearDown(self):
"""Call after every test case."""
Expand Down Expand Up @@ -281,4 +281,4 @@ def test_MSXgetqual(self):


if __name__ == "__main__":
unittest.main() # run all tests
unittest.main()

0 comments on commit 427f4bf

Please sign in to comment.