diff --git a/tests/discovery/test_linkedin_links.py b/tests/discovery/test_linkedin_links.py index 2dc6f3dc..9ff04f67 100644 --- a/tests/discovery/test_linkedin_links.py +++ b/tests/discovery/test_linkedin_links.py @@ -10,9 +10,7 @@ def test_get_links(self): search = linkedinsearch.SearchLinkedin("facebook.com", '100') search.process() links = search.get_links() - for link in links: - print(link) - + assert list(links) if __name__ == '__main__': pytest.main()