Skip to content

Commit 36b4a7f

Browse files
committed
Fix test
1 parent 5049bac commit 36b4a7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -519,9 +519,9 @@ public void ManagedCertificateCredential()
519519
// </managedcertificate_csharp>
520520

521521
Assert.Equal(CredentialType.Certificate, credentialDescription.CredentialType);
522-
Assert.Equal($"ManagedCertificate={exampleManagedCertId}", credentialDescription.Id);
522+
Assert.Equal($"ManagedCertificate={exampleManagedCertId};Thumbprint=null", credentialDescription.Id);
523523
credentialDescription.CachedValue = null;
524-
Assert.Equal("ManagedCertificate=null", credentialDescription.Id);
524+
Assert.Equal("ManagedCertificate=null;Thumbprint=null", credentialDescription.Id);
525525
}
526526
}
527527
}

0 commit comments

Comments
 (0)