Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions Tests/Mockolate.Tests/MockMethods/SetupMethodTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand Down Expand Up @@ -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()
Comment thread
vbreuss marked this conversation as resolved.
{
Expand Down Expand Up @@ -2100,5 +2097,4 @@ public async Task VoidMethodWith18Parameters_ShouldStillAllowCallbackAndReturns(

await That(isCalled).IsEqualTo(1);
}
#endif
}
Loading