1
0
mirror of https://github.com/searxng/searxng.git synced 2024-10-02 17:40:18 +02:00

[fix] kickass tests

This commit is contained in:
dalf 2015-02-12 14:50:41 +01:00
parent c4dd7c3a54
commit 9d537c0bad

View File

@ -47,7 +47,7 @@ def response(resp):
# check if redirect comparing to the True value,
# because resp can be a Mock object, and any attribut name returns something.
if resp.is_redirect == True:
if resp.is_redirect is True:
return results
dom = html.fromstring(resp.text)