Remove test QApplication "fix" again.

This causes more segfaults than it prevents...
This commit is contained in:
Florian Bruhin 2015-02-19 22:41:36 +01:00
parent 87951ee3a8
commit a41331a402

View File

@ -19,13 +19,8 @@
"""The qutebrowser test suite.""" """The qutebrowser test suite."""
import atexit
import functools
import sip
from PyQt5.QtWidgets import QApplication from PyQt5.QtWidgets import QApplication
# We create a singleton QApplication here. # We create a singleton QApplication here.
qApp = QApplication([]) qApp = QApplication([])
atexit.register(functools.partial(sip.delete, qApp))