From a681deb1e610ac0fc6858dd00900e210771a8179 Mon Sep 17 00:00:00 2001 From: jamshale Date: Wed, 30 Oct 2024 19:29:32 +0000 Subject: [PATCH] Fix test Signed-off-by: jamshale --- acapy_agent/did/indy/tests/test_indy_manager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/acapy_agent/did/indy/tests/test_indy_manager.py b/acapy_agent/did/indy/tests/test_indy_manager.py index 54f8234409..5847ea33c4 100644 --- a/acapy_agent/did/indy/tests/test_indy_manager.py +++ b/acapy_agent/did/indy/tests/test_indy_manager.py @@ -87,6 +87,7 @@ async def test_register_with_seed_with_defined_did(self, mock_handle): @mock.patch.object(InMemoryProfileSession, "handle") async def test_register_with_seed_with_all_options(self, mock_handle): + self.profile.settings.set_value("wallet.allow_insecure_seed", True) mock_handle.insert_key = mock.CoroutineMock() mock_handle.insert = mock.CoroutineMock() manager = DidIndyManager(self.profile)