Skip to content

Commit

Permalink
Fix dotnet format (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonashendrickx authored Oct 3, 2024
1 parent a416407 commit 3100e68
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public async Task RegisterUserAsync_Works()
var okResult = Assert.IsAssignableFrom<Ok<RegisterTokenResponse>>(result);
Assert.Equal(expectedResponse, okResult.Value);

Assert.Single(_testUserStore.InnerStore.Where(kvp => kvp.Value.Username == "test_username"));
Assert.Single(_testUserStore.InnerStore, kvp => kvp.Value.Username == "test_username");
}

[Fact]
Expand Down

0 comments on commit 3100e68

Please sign in to comment.