Skip to content

Commit

Permalink
remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
tcezard committed Oct 9, 2023
1 parent 1fa5f39 commit 02e62ff
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/test_submit.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,6 @@ def test_upload_submission(self):
test_url = 'http://example.com/'
with patch.object(StudySubmitter, 'upload_file') as mock_upload_file:
self.submitter.upload_submission(submission_upload_url=test_url, submission_dir=self.test_sub_dir)

print(mock_upload_file.mock_calls)
for vcf_file in self.submitter.vcf_files:
mock_upload_file.assert_any_call(test_url, vcf_file)
mock_upload_file.assert_called_with(test_url, self.submitter.metadata_file)
Expand Down

0 comments on commit 02e62ff

Please sign in to comment.