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

@@ -53,7 +53,7 @@ public class JwtService_Tests
if (jwtService != null)
{
var jwt = jwtService.GenerateToken(testString);
Assert.IsTrue(jwt != null);
Assert.IsNotNull(jwt);
Assert.IsInstanceOfType(jwt, typeof(string));
}
else