Removed the new queue name as it is not needed.

This commit is contained in:
Rebecca Law
2017-10-12 16:57:04 +01:00
parent fd2a7d3341
commit 401e209856
2 changed files with 2 additions and 5 deletions

View File

@@ -63,7 +63,7 @@ def test_cloudfoundry_config_has_different_defaults():
def test_queue_names_all_queues_correct():
# Need to ensure that all_queues() only returns queue names used in API
queues = QueueNames.all_queues()
assert len(queues) == 11
assert len(queues) == 10
assert set([
QueueNames.PRIORITY,
QueueNames.PERIODIC,
@@ -74,6 +74,5 @@ def test_queue_names_all_queues_correct():
QueueNames.STATISTICS,
QueueNames.JOBS,
QueueNames.RETRY,
QueueNames.NOTIFY,
QueueNames.CHECK_JOBS,
QueueNames.NOTIFY
]) == set(queues)