2727)
2828from sap_cloud_sdk .core .runtime_context ._registry import (
2929 Adapter ,
30- get_framework_adapters ,
30+ get_attached_adapters ,
3131 record_attached ,
3232)
3333from sap_cloud_sdk .core .runtime_context .providers ._ias import (
@@ -440,7 +440,7 @@ def test_single_context_passthrough(self):
440440
441441
442442# ---------------------------------------------------------------------------
443- # get_framework_adapters
443+ # get_attached_adapters
444444# ---------------------------------------------------------------------------
445445
446446
@@ -456,19 +456,19 @@ def teardown_method(self):
456456 registry_mod ._attached .extend (self ._original )
457457
458458 def test_empty_before_bootstrap (self ):
459- assert get_framework_adapters () == []
459+ assert get_attached_adapters () == []
460460
461461 def test_records_name_after_record_attached (self ):
462462 record_attached (Adapter .STARLETTE )
463- assert get_framework_adapters () == [Adapter .STARLETTE ]
463+ assert get_attached_adapters () == [Adapter .STARLETTE ]
464464
465465 def test_multiple_calls_accumulate (self ):
466466 record_attached (Adapter .STARLETTE )
467467 record_attached (Adapter .STARLETTE ) # idempotent
468- assert get_framework_adapters () == [Adapter .STARLETTE ]
468+ assert get_attached_adapters () == [Adapter .STARLETTE ]
469469
470470 def test_returns_copy (self ):
471471 record_attached (Adapter .STARLETTE )
472- snapshot = get_framework_adapters ()
472+ snapshot = get_attached_adapters ()
473473 snapshot .clear ()
474- assert get_framework_adapters () == [Adapter .STARLETTE ]
474+ assert get_attached_adapters () == [Adapter .STARLETTE ]
0 commit comments