tests: Use sip.delete to clean up prompt.

It looks like using deleteLater and waiting for the destroyed signal took too
long on the buildbot: http://www.qutebrowser.org/testresults/osx/1245.html
This commit is contained in:
Florian Bruhin 2016-01-11 07:38:56 +01:00
parent 70cd18fc98
commit 3f21accaeb

View File

@ -19,6 +19,8 @@
"""Test Prompt widget."""
import sip
import pytest
from qutebrowser.mainwindow.statusbar.prompt import Prompt
@ -35,8 +37,7 @@ def prompt(qtbot, win_registry):
# If we don't clean up here, this test will remove 'prompter' from the
# objreg at some point in the future, which will cause some other test to
# fail.
with qtbot.waitSignal(prompt.destroyed):
prompt.deleteLater()
sip.delete(prompt)
def test_prompt(prompt):