Fixing sonarcloud issues

This commit is contained in:
2025-06-21 17:42:04 +02:00
parent 54a5106314
commit 4c3aa30cbb
10 changed files with 31 additions and 31 deletions

View File

@@ -62,7 +62,7 @@ public class AuthService_Tests
if (authService != null)
{
var authenticatedUser = await authService.AuthenticateAsync(request.Data);
Assert.IsTrue(authenticatedUser == null);
Assert.IsNull(authenticatedUser);
}
else
{
@@ -93,7 +93,7 @@ public class AuthService_Tests
if (authService != null)
{
var authenticatedUser = await authService.AuthenticateAsync(request.Data);
Assert.IsTrue(authenticatedUser == null);
Assert.IsNull(authenticatedUser);
}
else
{