Skip to content

Commit

Permalink
Remove caplog from cli tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hakbailey committed Nov 15, 2021
1 parent 3525385 commit a55c665
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from submitter.cli import main


def test_cli_load_sample_data(caplog, mocked_sqs):
def test_cli_load_sample_data(mocked_sqs):
queue = mocked_sqs.get_queue_by_name(QueueName="empty_input_queue")

sqs_messages = queue.receive_messages()
Expand All @@ -26,7 +26,7 @@ def test_cli_load_sample_data(caplog, mocked_sqs):
assert len(sqs_messages) > 0


def test_cli_start(caplog, mocked_dspace, mocked_sqs):
def test_cli_start(mocked_dspace, mocked_sqs):
input_queue = mocked_sqs.get_queue_by_name(QueueName="input_queue_with_messages")
result_queue = mocked_sqs.get_queue_by_name(QueueName="empty_result_queue")

Expand Down

0 comments on commit a55c665

Please sign in to comment.