Skip to content

Commit

Permalink
Adapt formatting of tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Torben Schiz committed Mar 21, 2024
1 parent c804551 commit 926823d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/unit/test_micro_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def test_read_write_data_from_precice(self):
self.assertListEqual(data["macro-vector-data"].tolist(),
fake_data["macro-vector-data"].tolist())

def test_solve_mico_sims(self):
def test_solve_micro_sims(self):
"""
Test if the internal function _solve_micro_simulations works as expected.
"""
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_micro_simulation_crash_handling.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def test_crash_handling_with_adaptivity(self):
manager._micro_sims = [MicroSimulation(i) for i in range(10)]
manager._micro_sims_active_steps = np.zeros(10, dtype=np.int32)
is_sim_active = np.array(
[True, True, False, True, False, False, False, True, True, False,])
[True, True, False, True, False, False, False, True, True, False])
sim_is_associated_to = np.array([-2, -2, 1, -2, 3, 3, 0, -2, -2, 8])
# Crash in the first time step is handled differently

Expand Down

0 comments on commit 926823d

Please sign in to comment.