From 46b2576138a51a35fdccca4abe3fe04c429d33dd Mon Sep 17 00:00:00 2001 From: ff137 Date: Fri, 21 Feb 2025 11:38:43 +0200 Subject: [PATCH] :white_check_mark: Remove mocking of unused function Signed-off-by: ff137 --- acapy_agent/config/tests/test_ledger.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/acapy_agent/config/tests/test_ledger.py b/acapy_agent/config/tests/test_ledger.py index 813e9c5d88..638a6fe11e 100644 --- a/acapy_agent/config/tests/test_ledger.py +++ b/acapy_agent/config/tests/test_ledger.py @@ -645,7 +645,6 @@ async def test_ledger_accept_taa_tty(self, mock_stdout): } with ( - mock.patch.object(test_module, "use_asyncio_event_loop", mock.MagicMock()), mock.patch.object( test_module.prompt_toolkit, "prompt", mock.CoroutineMock() ) as mock_prompt, @@ -656,9 +655,6 @@ async def test_ledger_accept_taa_tty(self, mock_stdout): ) with ( - mock.patch.object( - test_module, "use_asyncio_event_loop", mock.MagicMock() - ) as mock_use_aio_loop, mock.patch.object( test_module.prompt_toolkit, "prompt", mock.CoroutineMock() ) as mock_prompt, @@ -669,9 +665,6 @@ async def test_ledger_accept_taa_tty(self, mock_stdout): ) with ( - mock.patch.object( - test_module, "use_asyncio_event_loop", mock.MagicMock() - ) as mock_use_aio_loop, mock.patch.object( test_module.prompt_toolkit, "prompt", mock.CoroutineMock() ) as mock_prompt,