From 06530d535b61e3829745ecb2dc2f142db99d1aad Mon Sep 17 00:00:00 2001 From: ff137 Date: Wed, 22 May 2024 12:50:09 +0200 Subject: [PATCH] :white_check_mark: fix expected response in tests Signed-off-by: ff137 --- aries_cloudagent/revocation/tests/test_routes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aries_cloudagent/revocation/tests/test_routes.py b/aries_cloudagent/revocation/tests/test_routes.py index 95e4eab0b5..301b0f9bbf 100644 --- a/aries_cloudagent/revocation/tests/test_routes.py +++ b/aries_cloudagent/revocation/tests/test_routes.py @@ -295,7 +295,7 @@ async def test_publish_revocations(self): await test_module.publish_revocations(self.request) mock_response.assert_called_once_with( - {"rrid2crid": pub_pending.return_value} + {"sent": {"rrid2crid": pub_pending.return_value}} ) async def test_publish_revocations_x(self): @@ -330,7 +330,7 @@ async def test_publish_revocations_endorser(self): await test_module.publish_revocations(self.author_request) mock_response.assert_called_once_with( - {"rrid2crid": pub_pending.return_value} + {"sent": {"rrid2crid": pub_pending.return_value}} ) async def test_publish_revocations_endorser_x(self):