Skip to content

Commit

Permalink
Do not cancel ert run in gui test
Browse files Browse the repository at this point in the history
  • Loading branch information
larsevj committed Dec 13, 2024
1 parent 5ae6ece commit e564b57
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/ert/unit_tests/gui/simulation/test_run_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -635,8 +635,7 @@ def test_that_debug_info_button_provides_data_in_clipboard(qtbot: QtBot, storage
qtbot.waitUntil(lambda: gui.findChild(RunDialog) is not None, timeout=5000)
run_dialog = gui.findChild(RunDialog)
assert run_dialog is not None
run_dialog._run_model.cancel()
run_dialog.simulation_done.emit(False, "")
qtbot.waitUntil(lambda: run_dialog.is_simulation_done() == True, timeout=100000)
copy_debug_info_button = gui.findChild(QPushButton, "copy_debug_info_button")
assert copy_debug_info_button
assert isinstance(copy_debug_info_button, QPushButton)
Expand Down

0 comments on commit e564b57

Please sign in to comment.