diff --git a/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Control/AsyncModuleFunctions.fs b/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Control/AsyncModuleFunctions.fs index 365e5c053f2..13f6ec38210 100644 --- a/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Control/AsyncModuleFunctions.fs +++ b/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Control/AsyncModuleFunctions.fs @@ -1,9 +1,6 @@ // Copyright (c) Microsoft Corporation. All Rights Reserved. See License.txt in the project root for license information. // Tests for camelCase functions in module Async - -// Intentionally in same collection to help rule out potential flakiness due to concurrency re #20306 -[] module FSharp.Core.UnitTests.Control.AsyncModuleFunctionsTests open System diff --git a/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Control/AsyncType.fs b/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Control/AsyncType.fs index 9083a23418b..537f7d59148 100644 --- a/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Control/AsyncType.fs +++ b/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Control/AsyncType.fs @@ -800,9 +800,7 @@ type AsyncType() = Assert.True(asyncWaitImm a) #endif -// Intentionally in same collection to help rule out potential flakiness due to concurrency re #20306 -[] -module AsyncTaskLikeAwaitTests = +module AsyncAwaitTaskLikeTests = // Minimal custom task-like type wrapping Task<'T> type MyTask<'T>(inner: Task<'T>) = @@ -904,8 +902,6 @@ module AsyncTaskLikeAwaitTests = |> asyncWaitImm Assert.Equal(42, result) -// Intentionally in same collection to help rule out potential flakiness due to concurrency re #20306 -[] module AsyncStartTaskImmediateTaskLikeTests = [] @@ -946,8 +942,6 @@ module AsyncStartTaskImmediateTaskLikeTests = Assert.Equal(cts.Token, capturedCt) -// Intentionally in same collection to help rule out potential flakiness due to concurrency re #20306 -[] module AsyncAwaitStackTraceTests = open System.Runtime.CompilerServices