diff options
Diffstat (limited to 'python/tests/test_wayback.py')
-rw-r--r-- | python/tests/test_wayback.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/tests/test_wayback.py b/python/tests/test_wayback.py index 6ccf775..9861db2 100644 --- a/python/tests/test_wayback.py +++ b/python/tests/test_wayback.py @@ -3,7 +3,7 @@ import json import pytest import responses -from sandcrawler import CdxApiClient, CdxApiError, PetaboxError, WaybackClient, WaybackError +from sandcrawler import CdxApiClient, WaybackClient CDX_TARGET = "http://fatcat.wiki/" CDX_DT = "20180812220054" @@ -215,4 +215,4 @@ def test_lookup_resource_success(wayback_client): resp = wayback_client.lookup_resource(CDX_TARGET) - assert resp.hit == True + assert resp.hit is True |