From 65a89882cebf76bc7b39f00f9b5d8c32a90594f6 Mon Sep 17 00:00:00 2001 From: derekpierre Date: Mon, 18 Sep 2023 08:58:56 -0400 Subject: [PATCH] Mock that encryption is authorized for tests. --- tests/conftest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/conftest.py b/tests/conftest.py index 888cfb2..36843c3 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -351,6 +351,7 @@ def dkg_setup( coordinator_agent.get_ritual_status.return_value = ( CoordinatorAgent.Ritual.Status.FINALIZED ) + coordinator_agent.is_encryption_authorized.return_value = True return ritual_id, public_key, cohort, threshold