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.
2 parents 97a03f9 + 6d8abdd commit 63cdebeCopy full SHA for 63cdebe
Tests/SystemTests/SystemCharTest.swift
@@ -25,7 +25,7 @@ final class SystemCharTest: XCTestCase {
25
26
// non printable
27
for value in 0..<(UInt8(ascii: " ")) {
28
- XCTAssertFalse(SystemChar(codeUnit: value).isLetter)
+ XCTAssertFalse(SystemChar(codeUnit: CInterop.PlatformUnicodeEncoding.CodeUnit(value)).isLetter)
29
}
30
XCTAssertFalse(SystemChar(codeUnit: 0x7F).isLetter) // DEL
31
0 commit comments