tests: Implement Tab._install_event_filter

This commit is contained in:
Florian Bruhin 2016-08-10 20:37:38 +02:00
parent b801d3316d
commit 9d510d744a

View File

@ -107,6 +107,9 @@ class Tab(browsertab.AbstractTab):
self.search = browsertab.AbstractSearch(parent=self)
self.printing = browsertab.AbstractPrinting()
def _install_event_filter(self):
pass
@pytest.mark.skipif(PYQT_VERSION < 0x050600,
reason='Causes segfaults, see #1638')