Fix flake8 errors in test_history

This commit is contained in:
Ryan Roden-Corrent 2017-04-09 07:02:14 -04:00
parent e661fb7446
commit 44080b8ad4

View File

@ -66,9 +66,9 @@ def test_len(hist):
def test_contains(hist):
hist.add_url(QUrl('http://www.example.com/'), title='Title', atime=12345)
assert 'http://www.example.com/' in hist
assert not 'www.example.com' in hist
assert not 'Title' in hist
assert not 12345 in hist
assert 'www.example.com' not in hist
assert 'Title' not in hist
assert 12345 not in hist
def test_get_recent(hist):