Fixed broken tests

This commit is contained in:
Chomp
2025-02-14 13:09:12 +00:00
parent d3990c1219
commit b8ad46c60f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ namespace UnitTests.Tests.Utils;
[TestClass]
public class HashUtilTests
{
protected HashUtil _hashUtil = new(new RandomUtil(new MockLogger<RandomUtil>(), new JsonCloner(new JsonUtil())));
protected HashUtil _hashUtil = new(new RandomUtil(new MockLogger<RandomUtil>(), new JsonCloner()));
[TestMethod]
public void GenerateTest()
+1 -1
View File
@@ -7,7 +7,7 @@ namespace UnitTests.Tests.Utils;
[TestClass]
public sealed class RandomUtilTests
{
private readonly RandomUtil _randomUtil = new(new MockLogger<RandomUtil>(), new JsonCloner(new JsonUtil()));
private readonly RandomUtil _randomUtil = new(new MockLogger<RandomUtil>(), new JsonCloner());
[TestMethod]
public void GetIntTest()