Skip to content

Commit

Permalink
update test to reflect current users and change condition to avoid fu…
Browse files Browse the repository at this point in the history
…ture updates (#2209)
  • Loading branch information
westin-m authored Apr 25, 2023
1 parent 9fdcf15 commit 7fb9638
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/IntegrationTests/TokenAcquirerTests/TokenAcquirer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ private static async Task CreateGraphClientAndAssert(TokenAcquirerFactory tokenA
.WithAuthenticationScheme(s_optionName)
// .WithAuthenticationOptions(options => options.ProtocolScheme = "Pop")
.GetAsync();
Assert.Equal(53, users.Count);
Assert.True(users.Count >= 56);

// Alternatively to calling Microsoft Graph, you can get a token acquirer service
// and get a token, and use it in an SDK.
Expand Down

0 comments on commit 7fb9638

Please sign in to comment.