Removed Chinese support (messed with root). Fixed tests.

This commit is contained in:
Michael Griebling
2024-10-05 10:45:03 -04:00
parent cfc0e75715
commit 2809379401
4 changed files with 27 additions and 27 deletions

View File

@@ -29,9 +29,9 @@ final class ConcurrencyThreadsafeTests: XCTestCase {
XCTAssertNotNil(result4)
}
}
executionGroup.notify(queue: .main) { [weak self] in
// print("All test cases completed: \(self?.testCount ?? 0)")
}
// executionGroup.notify(queue: .main) { [weak self] in
// // print("All test cases completed: \(self?.testCount ?? 0)")
// }
executionGroup.wait()
}
func helperConcurrency(_ count: Int, in group: DispatchGroup, on queue: DispatchQueue, _ testClosure: @escaping () -> (Void)) {