Skip to content

Commit

Permalink
rebase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Meisrimel authored and Peter Meisrimel committed Mar 20, 2024
1 parent f518286 commit a22acc6
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/test_fmi_master.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,6 @@ def test_basic_simulation_txt_file_naming_exists(self):
assert os.path.isfile("Test1.txt"), "Test1.txt does not exists"
assert os.path.isfile("Test2.txt"), "Test2.txt does not exists"

@testattr(stddist = True)
def test_basic_simulation_csv_file_naming_exists(self):
models, connections = self._load_basic_simulation()

Expand All @@ -211,7 +210,6 @@ def test_basic_simulation_csv_file_naming_exists(self):
assert os.path.isfile("Test1.csv"), "Test1.csv does not exists"
assert os.path.isfile("Test2.csv"), "Test2.csv does not exists"

@testattr(stddist = True)
def test_basic_simulation_none_result(self):
models, connections = self._load_basic_simulation()

Expand All @@ -225,7 +223,6 @@ def test_basic_simulation_none_result(self):
assert res[models[0]]._result_data == None, "Result is not none"
assert res[models[1]]._result_data == None, "Result is not none"

@testattr(stddist = True)
def test_custom_result_handler_invalid(self):
models, connections = self._load_basic_simulation()

Expand All @@ -240,7 +237,6 @@ class A:
opts["result_handler"] = A()
nose.tools.assert_raises(Exception, self._sim_basic_simulation, models, connections, opts)

@testattr(stddist = True)
def test_custom_result_handler_valid(self):
models, connections = self._load_basic_simulation()

Expand Down

0 comments on commit a22acc6

Please sign in to comment.