Merge pull request #6344 from chrismeyersfsu/redis-cleanup1

Redis cleanup1

Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
softwarefactory-project-zuul[bot]
2020-03-20 13:07:40 +00:00
committed by GitHub
5 changed files with 5 additions and 36 deletions

View File

@@ -349,7 +349,7 @@ class TestTaskPublisher:
def test_apply_async_queue_required(self):
with pytest.raises(ValueError) as e:
message, queue = add.apply_async([2, 2])
assert "awx.main.tests.functional.test_dispatch.add: Queue value required and may not me None" == e.value.args[0]
assert "awx.main.tests.functional.test_dispatch.add: Queue value required and may not be None" == e.value.args[0]
def test_queue_defined_in_task_decorator(self):
message, queue = multiply.apply_async([2, 2])