File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
protocols/connections/v1_0/tests Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -1186,6 +1186,7 @@ async def test_dispatch_complete_fatal_x(self):
11861186 conductor .dispatch_complete (message , mock_task )
11871187 mock_notify .assert_called_once_with ()
11881188
1189+ @pytest .mark .filterwarnings ("ignore:Aries RFC 0160.*:DeprecationWarning" )
11891190 async def test_print_invite_connection (self ):
11901191 builder : ContextBuilder = StubContextBuilder (self .test_settings )
11911192 builder .update_settings (
Original file line number Diff line number Diff line change 11from unittest import IsolatedAsyncioTestCase
22
3+ import pytest
4+
35from .....cache .base import BaseCache
46from .....cache .in_memory import InMemoryCache
57from .....connections .models .conn_record import ConnRecord
2931from ..models .connection_detail import ConnectionDetail
3032
3133
34+ @pytest .mark .filterwarnings ("ignore:Aries RFC 0160.*:DeprecationWarning" )
3235class TestConnectionManager (IsolatedAsyncioTestCase ):
3336 def make_did_doc (self , did , verkey ):
3437 doc = DIDDoc (did = did )
You can’t perform that action at this time.
0 commit comments