We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ad3a89 commit 4ac2494Copy full SHA for 4ac2494
Tests/DispatchAsyncTests/DispatchQueueTests.swift
@@ -31,7 +31,8 @@ func testBasicDispatchQueueMain() async throws {
31
#if os(Linux)
32
#expect(DispatchQueue.isMain)
33
#elseif !os(WASI)
34
- #expect(Thread.isMainThread) // NOTE: Thread API's aren't currently available on OS(WASI), as of June 2025
+ // NOTE: Thread API's aren't currently available on OS(WASI), as of June 2025
35
+ #expect(Thread.isMainThread)
36
#endif
37
continuation.resume(returning: true)
38
}
0 commit comments