diff --git a/tests/test_internet.py b/tests/test_internet.py index 8cf6fb9..36ca383 100644 --- a/tests/test_internet.py +++ b/tests/test_internet.py @@ -7,7 +7,6 @@ session = HTMLSession() def test_pagination(): pages = ( 'https://xkcd.com/1957/', - 'https://reddit.com/', 'https://smile.amazon.com/', 'https://theverge.com/archives' ) @@ -22,7 +21,6 @@ async def test_async_pagination(event_loop): asession = AsyncHTMLSession() pages = ( 'https://xkcd.com/1957/', - 'https://reddit.com/', 'https://smile.amazon.com/', 'https://theverge.com/archives' ) diff --git a/tests/test_requests_html.py b/tests/test_requests_html.py index 0c9fe0f..05c2bf7 100644 --- a/tests/test_requests_html.py +++ b/tests/test_requests_html.py @@ -79,7 +79,7 @@ def test_containing(): r = get() python = r.html.find(containing='python') - assert len(python) == 191 + assert len(python) == 192 for e in python: assert 'python' in e.full_text.lower()