Skip to content

Commit 7dc8cf4

Browse files
authored
Use the actual client IDs for FOCI (#5315)
1 parent 5cd6c9b commit 7dc8cf4

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

tests/Microsoft.Identity.Test.Common/TestConstants.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -240,10 +240,6 @@ public static IDictionary<string, string> ExtraQueryParameters
240240
public const string MsalOBOKeyVaultSecretName = "IdentityDivisionDotNetOBOServiceSecret";
241241
public const string MsalArlingtonOBOKeyVaultUri = "https://msidlabs.vault.azure.net:443/secrets/ARLMSIDLAB1-IDLASBS-App-CC-Secret";
242242
public const string MsalArlingtonOBOKeyVaultSecretName = "ARLMSIDLAB1-IDLASBS-App-CC-Secret";
243-
public const string FociApp1 = "https://buildautomation.vault.azure.net/secrets/automation-foci-app1/";
244-
public const string FociApp1KeyVaultSecretName = "automation-foci-app1";
245-
public const string FociApp2 = "https://buildautomation.vault.azure.net/secrets/automation-foci-app2/";
246-
public const string FociApp2KeyVaultSecretName = "automation-foci-app2";
247243
public const string MsalArlingtonCCAKeyVaultUri = "https://msidlabs.vault.azure.net:443/secrets/ARLMSIDLAB1-IDLASBS-App-CC-Secret";
248244
public const string MsalArlingtonCCAKeyVaultSecretName = "ARLMSIDLAB1-IDLASBS-App-CC-Secret";
249245

tests/Microsoft.Identity.Test.Integration.netcore/SeleniumTests/FociTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ await AssertException.TaskThrowsAsync<MsalUiRequiredException>(() => pca_nonFam
115115
private static void CreateFamilyApps(LabResponse labResponse, string cacheFilePath, out IPublicClientApplication pca_fam1, out IPublicClientApplication pca_fam2, out IPublicClientApplication pca_nonFam)
116116
{
117117
var keyvault = new KeyVaultSecretsProvider(KeyVaultInstance.MsalTeam);
118-
var clientId1 = keyvault.GetSecretByName(TestConstants.FociApp1KeyVaultSecretName).Value;
119-
var clientId2 = keyvault.GetSecretByName(TestConstants.FociApp2KeyVaultSecretName).Value;
118+
var clientId1 = "872cd9fa-d31f-45e0-9eab-6e460a02d1f1";
119+
var clientId2 = "1950a258-227b-4e31-a9cf-717495945fc2";
120120

121121
pca_fam1 = PublicClientApplicationBuilder
122122
.Create(clientId1)

0 commit comments

Comments
 (0)