fix(tests): remove print statement

This commit is contained in:
Vadim Kravcenko 2015-05-09 09:11:13 +02:00
parent d6da9ddc96
commit 32e7739cc7

View File

@ -42,7 +42,6 @@ class TestPipreqs(unittest.TestCase):
imports = pipreqs.get_all_imports(self.project) imports = pipreqs.get_all_imports(self.project)
with_info = pipreqs.get_imports_info(imports) with_info = pipreqs.get_imports_info(imports)
# Should contain only 5 Elements without the "nonexistendmodule" # Should contain only 5 Elements without the "nonexistendmodule"
print (with_info)
self.assertEqual( self.assertEqual(
len(with_info), 5, "Length of imports array with info is wrong") len(with_info), 5, "Length of imports array with info is wrong")
for item in with_info: for item in with_info: