Fix test_history_interface.

This was still using a history dict instead of SQL history.
This commit is contained in:
Ryan Roden-Corrent 2017-06-08 22:18:34 -04:00
parent 22b7b21d5a
commit a6a9ad72f9

View File

@ -152,7 +152,7 @@ def test_add_from_tab(hist, level, url, req_url, expected, mock_time, caplog):
@pytest.fixture
def hist_interface():
def hist_interface(hist):
# pylint: disable=invalid-name
QtWebKit = pytest.importorskip('PyQt5.QtWebKit')
from qutebrowser.browser.webkit import webkithistory
@ -160,8 +160,7 @@ def hist_interface():
# pylint: enable=invalid-name
entry = history.Entry(atime=0, url=QUrl('http://www.example.com/'),
title='example')
history_dict = {'http://www.example.com/': entry}
interface = webkithistory.WebHistoryInterface(history_dict)
interface = webkithistory.WebHistoryInterface(hist)
QWebHistoryInterface.setDefaultInterface(interface)
yield
QWebHistoryInterface.setDefaultInterface(None)