Skip to content

Commit

Permalink
Fix odd values for auth service success test
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaioru committed Aug 27, 2024
1 parent c268fa1 commit 4bb43a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/Edelstein.Common.Services.Auth.Tests/AuthServiceTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ await repository.Insert(new Identity
}

[TestMethod]
[DataRow("username", "password")]
[DataRow("uSeRnAmE", "password")]
[DataRow("username", "PASSw0rd")]
[DataRow("username1", "password")]
[DataRow("uSeRnAmE2", "password")]
[DataRow("username3", "PASSw0rd")]
public async Task AuthServiceTests_Login_Success(string username, string password)
{
await repository.Insert(new Identity
Expand Down

0 comments on commit 4bb43a6

Please sign in to comment.