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 b4d627d commit 561bf6aCopy full SHA for 561bf6a
Tests/CodeEditSourceEditorTests/Highlighting/StyledRangeContainerTests.swift
@@ -11,7 +11,10 @@ final class StyledRangeContainerTests: XCTestCase {
11
12
// Have to do string conversion due to missing Comparable conformance pre-macOS 14
13
XCTAssertEqual(store._storage.keys.sorted(), providers)
14
- XCTAssert(store._storage.values.allSatisfy({ $0.store.length == 100 }), "One or more providers have incorrect length")
+ XCTAssert(
15
+ store._storage.values.allSatisfy({ $0.store.length == 100 }),
16
+ "One or more providers have incorrect length"
17
+ )
18
}
19
20
@MainActor
0 commit comments