Skip to content

Commit d263d84

Browse files
committed
ci: Fix broken tests
Signed-off-by: Colton Wolkins (Laptop) <colton@indicio.tech>
1 parent 5d2c03b commit d263d84

File tree

5 files changed

+6
-0
lines changed

5 files changed

+6
-0
lines changed

acapy_agent/core/tests/test_plugin_registry.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
from ..goal_code_registry import GoalCodeRegistry
1212
from ..plugin_registry import PluginRegistry
1313
from ..protocol_registry import ProtocolRegistry
14+
from ...didcomm_v2.protocol_registry import V2ProtocolRegistry
1415

1516

1617
class TestPluginRegistry(IsolatedAsyncioTestCase):
@@ -27,6 +28,7 @@ def setUp(self):
2728
register_controllers=mock.MagicMock(),
2829
)
2930
self.context.injector.bind_instance(ProtocolRegistry, self.proto_registry)
31+
self.context.injector.bind_instance(V2ProtocolRegistry, V2ProtocolRegistry())
3032
self.context.injector.bind_instance(GoalCodeRegistry, self.goal_code_registry)
3133

3234
async def test_setup(self):

acapy_agent/protocols_v2/basicmessage/v1_0/message_types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
class basic_message:
1616
"""Basic Message 2.0 DIDComm V2 Protocol."""
17+
1718
async def __call__(self, *args, **kwargs):
1819
"""Call the Handler."""
1920
await self.handle(*args, **kwargs)

acapy_agent/protocols_v2/discovery/v1_0/message_types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
class discover_features:
2121
"""Discover Features 2.0 DIDComm V2 Protocol."""
22+
2223
async def __call__(self, *args, **kwargs):
2324
"""Call the Handler."""
2425
await self.handle(*args, **kwargs)

acapy_agent/protocols_v2/empty/v1_0/message_types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
class basic_message:
1515
"""Empty 1.0 DIDComm V2 Protocol."""
16+
1617
async def __call__(self, *args, **kwargs):
1718
"""Call the Handler."""
1819
await self.handle(*args, **kwargs)

acapy_agent/protocols_v2/trustping/v1_0/message_types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
class trust_ping:
1717
"""Trust Ping 2.0 DIDComm V2 Protocol."""
18+
1819
async def __call__(self, *args, **kwargs):
1920
"""Call the Handler."""
2021
await self.handle(*args, **kwargs)

0 commit comments

Comments
 (0)