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
Remove ActiveIssue for #50968
  • Loading branch information
lewing committed Jun 28, 2021
commit ab6af0e45663a46d88be2daea25ffc434b20f16a
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,6 @@ private static void TaskMethodBuilderT_UsesCompletedCache<T>(T result, bool shou
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/50968", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsMonoAOT))]
public static void Tcs_ValidateFaultedTask()
{
var tcs = new TaskCompletionSource<int>();
Expand All @@ -417,7 +416,6 @@ public static void Tcs_ValidateFaultedTask()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/50968", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsMonoAOT))]
public static void TaskMethodBuilder_ValidateFaultedTask()
{
var atmb = AsyncTaskMethodBuilder.Create();
Expand All @@ -427,7 +425,6 @@ public static void TaskMethodBuilder_ValidateFaultedTask()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/50968", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsMonoAOT))]
public static void TaskMethodBuilderT_ValidateFaultedTask()
{
var atmbtr = AsyncTaskMethodBuilder<object>.Create();
Expand All @@ -437,7 +434,6 @@ public static void TaskMethodBuilderT_ValidateFaultedTask()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/50968", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsMonoAOT))]
public static void TrackedSyncContext_ValidateException()
{
SynchronizationContext previousContext = SynchronizationContext.Current;
Expand Down