Skip to content

Commit

Permalink
✅ Remove mocking of unused function
Browse files Browse the repository at this point in the history
Signed-off-by: ff137 <ff137@proton.me>
  • Loading branch information
ff137 committed Feb 21, 2025
1 parent 65d5f09 commit 46b2576
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions acapy_agent/config/tests/test_ledger.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit 46b2576

Please sign in to comment.