Skip to content

Commit

Permalink
fix(tests): fix Test_UsernameOrPasswordError
Browse files Browse the repository at this point in the history
  • Loading branch information
Tabing010102 committed Jan 2, 2024
1 parent b21db3e commit 4072ff4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ public void Test_UsernameOrPasswordError()
var usernames = new[] { "test1", "test", "test1" };
var passwords = new[] { "test", "test1", "test1" };
var statuses = new[] {
new Status(StatusCode.PermissionDenied, "User not exists."),
new Status(StatusCode.PermissionDenied, "Username and password not match."),
new Status(StatusCode.PermissionDenied, "User not exists."),
new Status(StatusCode.Unauthenticated, "User not exists."),
new Status(StatusCode.Unauthenticated, "Username and password not match."),
new Status(StatusCode.Unauthenticated, "User not exists."),
};

for (int i = 0; i < usernames.Length; i++)
Expand Down

0 comments on commit 4072ff4

Please sign in to comment.