too many blank lines in test

This commit is contained in:
csparks 2019-09-07 03:35:59 +00:00
parent b18983fecb
commit a2a2e197ec

View file

@ -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()