Skip to content

Commit

Permalink
test: remove print statements from code
Browse files Browse the repository at this point in the history
  • Loading branch information
d-Rickyy-b committed Mar 3, 2020
1 parent f135cc2 commit 18fa1ad
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion pastepwn/actions/tests/savefileaction_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def setUp(self):
shutil.rmtree(self.paste_path, ignore_errors=False)
except FileNotFoundError as e:
# Directory not there
print("Did not remove directory, because it wasn't there in the first place.")
pass

# Create it again
if not os.path.exists(self.paste_path):
Expand Down
1 change: 0 additions & 1 deletion pastepwn/analyzers/tests/emailpasswordpairanalyzer_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ def test_match_multiple(self):
"Some comment\n" \
"test+test@gmail.com:abcd"
match = analyzer.match(self.paste)
print(match)
self.assertTrue(match)
self.assertEqual("estocanam2@apple.com:Fireb§", match[0])
self.assertEqual("g@bb.com:Firebird1@", match[1])
Expand Down

0 comments on commit 18fa1ad

Please sign in to comment.