From 04cda4558ef95296d57721007116455a1971bd7c Mon Sep 17 00:00:00 2001 From: Akash Mahanty Date: Sun, 10 Jan 2021 03:18:09 +0530 Subject: [PATCH] fix test --- tests/test_utils.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/test_utils.py b/tests/test_utils.py index e391f89..08cfaec 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -37,10 +37,6 @@ def test_check_filters(): filters = ["statuscode:200", "timestamp:20215678901234", "original:https://url.com"] _check_filters(filters) - filters = ["statuscode:2768900", "timestamp:123456789", "original:://url.com"] - with pytest.raises(WaybackError): - _check_filters(filters) - with pytest.raises(WaybackError): _check_filters("not-list")