From 41cedd5c8e1146690f0d3886613da9cc10b39a62 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Wed, 5 Jul 2023 14:20:10 -0300 Subject: [PATCH] Reset retry policy This was set to workaround a test failure, but that test failure was fixed in CR 13625 Change-Id: Ia867eb621a93c6537bbea8c7cf30b074296acd98 Signed-off-by: Daniel Arndt --- osm_lcm/tests/test_vim_workflows.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osm_lcm/tests/test_vim_workflows.py b/osm_lcm/tests/test_vim_workflows.py index 515d3ad..500ce82 100644 --- a/osm_lcm/tests/test_vim_workflows.py +++ b/osm_lcm/tests/test_vim_workflows.py @@ -182,7 +182,7 @@ class TestVimWorkflow(TestVimWorkflowsBase): self.mock_update_vim_state_raises, self.mock_update_vim_operation_state, ] - retry_policy = 1 # TODO: Figure out what this should be anchored to + retry_policy = 3 expected_vim_state = [VimState.ENABLED] * retry_policy expected_vim_op_state = [VimOperationState.COMPLETED] async with self.env, self.get_worker(activities): @@ -205,7 +205,7 @@ class TestVimWorkflow(TestVimWorkflowsBase): self.mock_update_vim_operation_state_raises, ] expected_vim_state = [VimState.ENABLED] - retry_policy = 1 # TODO: Figure out what this should be anchored to + retry_policy = 3 expected_vim_op_state = [VimOperationState.COMPLETED] * retry_policy async with self.env, self.get_worker(activities): with self.assertRaises(WorkflowFailureError): -- 2.25.1