Skip to content

Commit

Permalink
Fix unit test caused by nullability
Browse files Browse the repository at this point in the history
  • Loading branch information
damieng committed Jun 14, 2019
1 parent bc287fd commit 29935c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Auth0.ManagementApi.IntegrationTests/UsersTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public async Task Test_user_blocking()

// Ensure the user is not blocked when we select the user individually
var user = await _apiClient.Users.GetAsync(newUserResponse.UserId);
user.Blocked.Should().BeFalse();
user.Blocked.Should().NotBeTrue();

// Block the user, and ensure returned user is blocked
var updateUserRequest = new UserUpdateRequest
Expand Down

0 comments on commit 29935c0

Please sign in to comment.