From b8ad46c60f10d6d8a5933a97e13ee4dc54457ae4 Mon Sep 17 00:00:00 2001 From: Chomp Date: Fri, 14 Feb 2025 13:09:12 +0000 Subject: [PATCH] Fixed broken tests --- UnitTests/Tests/Utils/HashUtilTests.cs | 2 +- UnitTests/Tests/Utils/RandomUtilTests.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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()