From b6bf6091cd8ead4306992ee822bad280ba513f3c Mon Sep 17 00:00:00 2001 From: Daniel K Lyons <dlyons@nrao.edu> Date: Thu, 4 Aug 2022 14:25:37 -0600 Subject: [PATCH] Fix a mistake in the test --- shared/workspaces/test/test_execution_manager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/shared/workspaces/test/test_execution_manager.py b/shared/workspaces/test/test_execution_manager.py index cce994093..eab490e4b 100644 --- a/shared/workspaces/test/test_execution_manager.py +++ b/shared/workspaces/test/test_execution_manager.py @@ -214,6 +214,7 @@ def test_resume_execution( } ) fake_execution.capability = capability + mock_capability_info.save_execution(fake_execution) dummy_execution_manager.queue_execution(fake_execution) assert fake_execution.queue_state == QueueState.Queued.name dummy_execution_manager.resume_execution(fake_execution) -- GitLab