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 84b30e1 commit af2eb5eCopy full SHA for af2eb5e
Tests/CustomDumpTests/DiffTests.swift
@@ -1113,9 +1113,9 @@ final class DiffTests: XCTestCase {
1113
}
1114
1115
1116
-fileprivate struct Stack<State: Equatable>: CustomDumpReflectable, Equatable {
+private struct Stack<State: Equatable>: CustomDumpReflectable, Equatable {
1117
static func == (lhs: Self, rhs: Self) -> Bool {
1118
- zip(lhs.elements, rhs.elements ).allSatisfy(==)
+ zip(lhs.elements, rhs.elements).allSatisfy(==)
1119
1120
1121
var elements: [(ID, State)]
0 commit comments