File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change 1- import pytest
21from PyQt5 import QtCore
32from PyQt5 .QtWidgets import QDialogButtonBox
43from vorta .store .models import BackupProfileModel
@@ -10,7 +9,6 @@ def test_profile_add(qapp, qtbot):
109
1110 add_profile_window = main .window
1211 qtbot .addWidget (add_profile_window )
13- qtbot .waitUntil (lambda : add_profile_window == qapp .activeWindow (), ** pytest ._wait_defaults )
1412
1513 qtbot .keyClicks (add_profile_window .profileNameField , 'Test Profile' )
1614 qtbot .mouseClick (add_profile_window .buttonBox .button (QDialogButtonBox .Save ), QtCore .Qt .LeftButton )
@@ -25,7 +23,6 @@ def test_profile_edit(qapp, qtbot):
2523
2624 edit_profile_window = main .window
2725 qtbot .addWidget (edit_profile_window )
28- qtbot .waitUntil (lambda : edit_profile_window == qapp .activeWindow (), ** pytest ._wait_defaults )
2926
3027 edit_profile_window .profileNameField .setText ("" )
3128 qtbot .keyClicks (edit_profile_window .profileNameField , 'Test Profile' )
You can’t perform that action at this time.
0 commit comments