diff --git a/Tests/OTCoreTests/Extensions/Swift/Concurrency Tests.swift b/Tests/OTCoreTests/Extensions/Swift/Concurrency Tests.swift index ba946cd..9c38236 100644 --- a/Tests/OTCoreTests/Extensions/Swift/Concurrency Tests.swift +++ b/Tests/OTCoreTests/Extensions/Swift/Concurrency Tests.swift @@ -17,7 +17,7 @@ final class Extensions_Swift_Concurrency_Tests: XCTestCase { func testWithOrderedTaskGroup() async { let input = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J"] - let output = await withOrderedTaskGroup(sequence: input) { element in + let output: [String] = await withOrderedTaskGroup(sequence: input) { element in usleep(UInt32.random(in: 1 ... 10) * 1000) return element }