fix tests, 1 fails in mathUtilTest, changing from float to double

This commit is contained in:
CWX
2025-01-18 21:02:00 +00:00
parent 077f86ac46
commit cc1b022396
9 changed files with 346 additions and 346 deletions
+3 -1
View File
@@ -8,7 +8,7 @@ namespace Core.Utils;
[Injectable(InjectionType.Singleton)]
public class RandomUtil
{
protected ISptLogger<RandomUtil> _logger;
protected ISptLogger<RandomUtil>? _logger = null;
public RandomUtil
(
@@ -17,6 +17,8 @@ public class RandomUtil
{
_logger = logger;
}
public RandomUtil() { }
public readonly Random Random = new();