Skip to content

Commit

Permalink
Increase number of properties
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyencuong2596 committed Jun 19, 2024
1 parent 54d1fb5 commit 50ee6d6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ public void GetSets()
OpenIdConnectConfiguration configuration = new OpenIdConnectConfiguration();
Type type = typeof(OpenIdConnectConfiguration);
PropertyInfo[] properties = type.GetProperties();
if (properties.Length != 67)
Assert.True(false, "Number of properties has changed from 67 to: " + properties.Length + ", adjust tests");
if (properties.Length != 68)
Assert.True(false, "Number of properties has changed from 68 to: " + properties.Length + ", adjust tests");

TestUtilities.CallAllPublicInstanceAndStaticPropertyGets(configuration, "OpenIdConnectConfiguration_GetSets");

Expand Down

0 comments on commit 50ee6d6

Please sign in to comment.