From a2a2e197ecab7f3d1829db1cdbc72801e96d39b7 Mon Sep 17 00:00:00 2001 From: csparks Date: Sat, 7 Sep 2019 03:35:59 +0000 Subject: [PATCH] too many blank lines in test --- tests/discovery/test_linkedin_links.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/discovery/test_linkedin_links.py b/tests/discovery/test_linkedin_links.py index c1965221..2dc6f3dc 100644 --- a/tests/discovery/test_linkedin_links.py +++ b/tests/discovery/test_linkedin_links.py @@ -1,13 +1,11 @@ #!/usr/bin/env python3 # coding=utf-8 from theHarvester.discovery import linkedinsearch -from theHarvester.lib import stash import pytest class TestGetLinks(object): - def test_get_links(self): search = linkedinsearch.SearchLinkedin("facebook.com", '100') search.process() @@ -15,5 +13,6 @@ def test_get_links(self): for link in links: print(link) + if __name__ == '__main__': pytest.main()