From a67f0d05221805983c7a0175c835694b8e06990a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valentin=20Breu=C3=9F?= Date: Tue, 12 May 2026 18:08:46 +0200 Subject: [PATCH] refactor: re-enable disabled tests due to testhost crash --- Tests/Mockolate.Tests/MockMethods/SetupMethodTests.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Tests/Mockolate.Tests/MockMethods/SetupMethodTests.cs b/Tests/Mockolate.Tests/MockMethods/SetupMethodTests.cs index 551db3de..3da21d93 100644 --- a/Tests/Mockolate.Tests/MockMethods/SetupMethodTests.cs +++ b/Tests/Mockolate.Tests/MockMethods/SetupMethodTests.cs @@ -2016,7 +2016,6 @@ public interface IVoidMethodSetupTest void UniqueMethodWith5Parameters(int p1, int p2, int p3, int p4, int p5); } -#if DEBUG // TODO: re-enable after https://github.com/dotnet/sdk/issues/52579 is fixed [Fact] public async Task ReturnMethodWith17Parameters_ShouldStillAllowCallbackAndReturns() { @@ -2060,9 +2059,7 @@ public async Task ReturnMethodWith18Parameters_ShouldStillAllowCallbackAndReturn await That(isCalled).IsEqualTo(1); await That(result).IsEqualTo(171); } -#endif -#if DEBUG // TODO: re-enable after https://github.com/dotnet/sdk/issues/52579 is fixed [Fact] public async Task VoidMethodWith17Parameters_ShouldStillAllowCallbackAndReturns() { @@ -2100,5 +2097,4 @@ public async Task VoidMethodWith18Parameters_ShouldStillAllowCallbackAndReturns( await That(isCalled).IsEqualTo(1); } -#endif }