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)