Skip to content

Commit 08a3b2a

Browse files
committed
test_combobox: Remove test_empty
Test fails on Qt6.7 because a QListView is already created by the base class. The test did not really test much so just remove it.
1 parent d6d1b1c commit 08a3b2a

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

orangewidget/utils/tests/test_combobox.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -116,13 +116,6 @@ def test_track(self):
116116
self.assertEqual(popup.currentIndex().row(), 2)
117117
cb.hidePopup()
118118

119-
def test_empty(self):
120-
cb = self.cb
121-
cb.clear()
122-
cb.showPopup()
123-
popup = cb.findChild(QListView) # type: QListView
124-
self.assertIsNone(popup)
125-
126119
def test_kwargs_enabled_focus_out(self):
127120
# PyQt5's property via kwargs can invoke virtual overrides while still
128121
# not fully constructed

0 commit comments

Comments
 (0)