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 19, 2024
1 parent 8e5e0c4 commit 2e9f2d3
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 @@ -12,7 +12,7 @@ def setUp(self):
# Create EPANET object using the INP file
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.epanetClass = epanet(inpname)
self.msxClass = self.epanetClass.loadMSXFile(msxfile)

def tearDown(self):
Expand Down Expand Up @@ -253,7 +253,7 @@ def test_MSXgetqual(self):
self.msxClass.MSXclose()
self.epanetClass.unload()
inpname = os.path.join(DIRNAME, 'msx-examples', 'net2-cl2.inp')
self.epanetClass = epanet(inpname, msx=True)
self.epanetClass = epanet(inpname)
file_path = os.path.join(DIRNAME, 'msx-examples', 'net2-cl2.msx')
self.msxClass = self.epanetClass.loadMSXFile(file_path)

Expand Down

0 comments on commit 2e9f2d3

Please sign in to comment.