From 3183cabb262d0bdbabc5cc84700d827341fe9e07 Mon Sep 17 00:00:00 2001 From: WXTIM <26465611+wxtim@users.noreply.github.com> Date: Fri, 3 Nov 2023 13:53:51 +0000 Subject: [PATCH] Commented out broken test lines (see issue 5812) --- tests/unit/test_indep_task_queues.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/unit/test_indep_task_queues.py b/tests/unit/test_indep_task_queues.py index a0a1894cece..bb11fbce463 100644 --- a/tests/unit/test_indep_task_queues.py +++ b/tests/unit/test_indep_task_queues.py @@ -92,9 +92,10 @@ def test_queue_and_release( assert sorted([r.tdef.name for r in released]) == sorted(expected_released) # check released tasks change state to "preparing", and not is_queued - for r in released: - assert r.state.reset.called_with(TASK_STATUS_PREPARING) - assert r.state.reset.called_with(is_queued=False) + # Commented out pending https://github.com/cylc/cylc-flow/issues/5812 + # for r in released: + # assert r.state.reset.called_with(TASK_STATUS_PREPARING) + # assert r.state.reset.called_with(is_queued=False) # check that adopted orphans end up in the default queue orphans = ["orphan1", "orphan2"]