Browse Source

qtbot.waitForWindowShown -> qtbot.waitExposed

Kentaro Wada 2 years ago
parent
commit
aeed5317bb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/labelme_tests/widgets_tests/test_label_list_widget.py

+ 1 - 1
tests/labelme_tests/widgets_tests/test_label_list_widget.py

@@ -17,4 +17,4 @@ def test_LabelListWidget(qtbot):
 
     widget.show()
     qtbot.addWidget(widget)
-    qtbot.waitForWindowShown(widget)
+    qtbot.waitExposed(widget)