Skip to content

Commit

Permalink
Add link to issue
Browse files Browse the repository at this point in the history
Add link to issue for skipped test.
  • Loading branch information
martincostello committed Mar 21, 2024
1 parent 10d0697 commit 9811119
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/Polly.Core.Tests/Polly.Core.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('Windows'))">$(TargetFrameworks);net481</TargetFrameworks>
<ProjectType>Test</ProjectType>
<Nullable>enable</Nullable>
<!-- HACK Reduced while test disabled due to issue -->
<!-- HACK Reduced while test disabled due to https://github.com/dotnet/runtime/issues/99187 -->
<Threshold>99</Threshold>
<NoWarn>$(NoWarn);SA1600;SA1204</NoWarn>
<Include>[Polly.Core]*</Include>
Expand Down
2 changes: 1 addition & 1 deletion test/Polly.Core.Tests/Utils/StrategyHelperTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public async Task ExecuteCallbackSafeAsync_Cancelled_EnsureOperationCanceledExce
outcome.Exception.Should().BeOfType<OperationCanceledException>();
}

[InlineData(true, Skip = "Causes test process to abort in Release mode for net9.0.")]
[InlineData(true, Skip = "Causes test process to abort in Release mode for net9.0. See https://github.com/dotnet/runtime/issues/99187.")]
[InlineData(false)]
[Theory]
public async Task ExecuteCallbackSafeAsync_CallbackThrows_EnsureExceptionWrapped(bool isAsync) =>
Expand Down

0 comments on commit 9811119

Please sign in to comment.