@@ -841,14 +841,14 @@ def test_user_account(self):
841841
842842
843843class WorldWideTestCase (LabBasedTestCase ):
844- _ADFS_LABS_DECOMMISSIONED = "ADFS labs were decommissioned since July 2025 until further notice"
844+ _ADFS_LABS_UNAVAILABLE = "ADFS labs were temporarily down since July 2025 until further notice"
845845
846846 def test_aad_managed_user (self ): # Pure cloud
847847 config = self .get_lab_user (usertype = "cloud" )
848848 config ["password" ] = self .get_lab_user_secret (config ["lab_name" ])
849849 self ._test_username_password (** config )
850850
851- @unittest .skip (_ADFS_LABS_DECOMMISSIONED )
851+ @unittest .skip (_ADFS_LABS_UNAVAILABLE )
852852 def test_adfs4_fed_user (self ):
853853 config = self .get_lab_user (usertype = "federated" , federationProvider = "ADFSv4" )
854854 config ["password" ] = self .get_lab_user_secret (config ["lab_name" ])
@@ -866,7 +866,7 @@ def test_adfs2_fed_user(self):
866866 config ["password" ] = self .get_lab_user_secret (config ["lab_name" ])
867867 self ._test_username_password (** config )
868868
869- @unittest .skip (_ADFS_LABS_DECOMMISSIONED )
869+ @unittest .skip (_ADFS_LABS_UNAVAILABLE )
870870 def test_adfs2019_fed_user (self ):
871871 try :
872872 config = self .get_lab_user (usertype = "federated" , federationProvider = "ADFSv2019" )
@@ -895,7 +895,7 @@ def test_msa_pt_app_signin_via_organizations_authority_without_login_hint(self):
895895 prompt = "select_account" , # In MSAL Python, this resets login_hint
896896 ))
897897
898- @unittest .skip (_ADFS_LABS_DECOMMISSIONED )
898+ @unittest .skip (_ADFS_LABS_UNAVAILABLE )
899899 def test_ropc_adfs2019_onprem (self ):
900900 # Configuration is derived from https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/blob/4.7.0/tests/Microsoft.Identity.Test.Common/TestConstants.cs#L250-L259
901901 config = self .get_lab_user (usertype = "onprem" , federationProvider = "ADFSv2019" )
@@ -904,7 +904,7 @@ def test_ropc_adfs2019_onprem(self):
904904 config ["password" ] = self .get_lab_user_secret (config ["lab_name" ])
905905 self ._test_username_password (** config )
906906
907- @unittest .skip (_ADFS_LABS_DECOMMISSIONED )
907+ @unittest .skip (_ADFS_LABS_UNAVAILABLE )
908908 def test_adfs2019_onprem_acquire_token_by_auth_code (self ):
909909 """When prompted, you can manually login using this account:
910910
@@ -918,7 +918,7 @@ def test_adfs2019_onprem_acquire_token_by_auth_code(self):
918918 config ["port" ] = 8080
919919 self ._test_acquire_token_by_auth_code (** config )
920920
921- @unittest .skip (_ADFS_LABS_DECOMMISSIONED )
921+ @unittest .skip (_ADFS_LABS_UNAVAILABLE )
922922 def test_adfs2019_onprem_acquire_token_by_auth_code_flow (self ):
923923 config = self .get_lab_user (usertype = "onprem" , federationProvider = "ADFSv2019" )
924924 self ._test_acquire_token_by_auth_code_flow (** dict (
@@ -928,7 +928,7 @@ def test_adfs2019_onprem_acquire_token_by_auth_code_flow(self):
928928 port = 8080 ,
929929 ))
930930
931- @unittest .skip (_ADFS_LABS_DECOMMISSIONED )
931+ @unittest .skip (_ADFS_LABS_UNAVAILABLE )
932932 def test_adfs2019_onprem_acquire_token_interactive (self ):
933933 config = self .get_lab_user (usertype = "onprem" , federationProvider = "ADFSv2019" )
934934 self ._test_acquire_token_interactive (** dict (
0 commit comments