Skip to content

Commit

Permalink
remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
briehl committed Aug 24, 2023
1 parent 963a8de commit d869e99
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/biokbase/narrative/tests/test_jobcomm.py
Original file line number Diff line number Diff line change
Expand Up @@ -876,18 +876,11 @@ def test_cancel_jobs__job_id_list__failure(self):

@mock.patch(CLIENTS, get_mock_client)
def check_retry_jobs(self, job_args, job_id_list):
import json
req_dict = make_comm_msg(RETRY, job_args, False)
expected = {
job_id: ALL_RESPONSE_DATA[RETRY][job_id] for job_id in job_id_list if job_id
}
# print("request")
# print(json.dumps(req_dict, indent=4))
retry_data = self.jc._handle_comm_message(req_dict)
# print("reply")
# print(json.dumps(retry_data, indent=4))
# print("expected")
# print(json.dumps(expected, indent=4))
self.assertEqual(expected, retry_data)
retry_msg = self.jc._comm.pop_message()
self.assertEqual(
Expand Down

0 comments on commit d869e99

Please sign in to comment.