diff --git a/UnitTests/Tests/Utils/HashUtilTests.cs b/UnitTests/Tests/Utils/HashUtilTests.cs index b7611a06..e433edc2 100644 --- a/UnitTests/Tests/Utils/HashUtilTests.cs +++ b/UnitTests/Tests/Utils/HashUtilTests.cs @@ -7,7 +7,7 @@ namespace UnitTests.Tests.Utils; [TestClass] public class HashUtilTests { - protected HashUtil _hashUtil = new(new RandomUtil(new MockLogger(), new JsonCloner(new JsonUtil()))); + protected HashUtil _hashUtil = new(new RandomUtil(new MockLogger(), new JsonCloner())); [TestMethod] public void GenerateTest() diff --git a/UnitTests/Tests/Utils/RandomUtilTests.cs b/UnitTests/Tests/Utils/RandomUtilTests.cs index f052e2e8..5218835a 100644 --- a/UnitTests/Tests/Utils/RandomUtilTests.cs +++ b/UnitTests/Tests/Utils/RandomUtilTests.cs @@ -7,7 +7,7 @@ namespace UnitTests.Tests.Utils; [TestClass] public sealed class RandomUtilTests { - private readonly RandomUtil _randomUtil = new(new MockLogger(), new JsonCloner(new JsonUtil())); + private readonly RandomUtil _randomUtil = new(new MockLogger(), new JsonCloner()); [TestMethod] public void GetIntTest()