Skip to content

Commit

Permalink
undo changes in WebAppExtensionsTest
Browse files Browse the repository at this point in the history
  • Loading branch information
jmprieur authored Nov 14, 2024
1 parent 733406b commit 07be28a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/Microsoft.Identity.Web.Test/WebAppExtensionsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -912,7 +912,10 @@ public void PreventChangesInOpenIdConnectOptionsToBeOverlooked()
// needs to be updated. For this uncomment the variable "filePath" and line 893 below, then run the test
// and diff the files to find what are the new properties.
int numberOfProperties = typeof(OpenIdConnectOptions).GetProperties(System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.Instance).Length;
#if NET8_0_OR_GREATER
#if NET9_0_OR_GREATER
int expectedNumberOfProperties = 62;
//string filePath = @"C:\temp\net9.txt";
#elif NET8_0
int expectedNumberOfProperties = 60;
//string filePath = @"C:\temp\net8.txt";
#else
Expand Down

0 comments on commit 07be28a

Please sign in to comment.