From 8fc97c263bea1c136c0ff6fc724449962ba2b38c Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Sat, 1 Jun 2024 18:18:21 +0200 Subject: [PATCH] Try to fix 3.10 test seg fault --- tests/test_gui/test_gui_i18n.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/test_gui/test_gui_i18n.py b/tests/test_gui/test_gui_i18n.py index 93f333a7..83638f13 100644 --- a/tests/test_gui/test_gui_i18n.py +++ b/tests/test_gui/test_gui_i18n.py @@ -64,9 +64,6 @@ def testGuiI18n_Localisation(qtbot, monkeypatch, language, nwGUI, projPath): qtbot.waitUntil(lambda: SHARED.findTopLevelWidget(dType) is not None, timeout=1000) dialog = SHARED.findTopLevelWidget(dType) assert isinstance(dialog, dType) - with qtbot.waitExposed(dialog): - dialog.show() - dialog.close() showDialog(nwGUI.showWelcomeDialog, GuiWelcome) showDialog(nwGUI.showPreferencesDialog, GuiPreferences)