mirror of
https://github.com/samsonjs/Peekaboo.git
synced 2026-04-27 15:07:41 +00:00
fix: Swift test compilation error with allSatisfy closure
This commit is contained in:
parent
c9ac341e08
commit
d5df3ec53e
1 changed files with 1 additions and 1 deletions
|
|
@ -283,7 +283,7 @@ struct JSONOutputTests {
|
||||||
|
|
||||||
for errorCode in errorCodes {
|
for errorCode in errorCodes {
|
||||||
#expect(!errorCode.rawValue.isEmpty)
|
#expect(!errorCode.rawValue.isEmpty)
|
||||||
#expect(errorCode.rawValue.allSatisfy(\.isASCII))
|
#expect(errorCode.rawValue.allSatisfy { $0.isASCII })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue