Skip to content

Commit 3258ec3

Browse files
mbrandonwgithub-actions[bot]
authored andcommitted
Run swift-format
1 parent ef0efdb commit 3258ec3

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

Examples/Integration/IntegrationUITests/ForEachBindingTests.swift

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,13 @@ final class ForEachBindingTests: XCTestCase {
1818
app.buttons["Remove last"].tap()
1919
XCTAssertFalse(app.textFields["A"].exists)
2020

21-
XCTExpectFailure("""
22-
This ideally would not fail, but currently does. See this PR for more details:
21+
XCTExpectFailure(
22+
"""
23+
This ideally would not fail, but currently does. See this PR for more details:
2324
24-
https://github.com/pointfreeco/swift-composable-architecture/pull/1845
25-
""") {
25+
https://github.com/pointfreeco/swift-composable-architecture/pull/1845
26+
"""
27+
) {
2628
XCTAssertFalse(app.staticTexts["🛑"].exists)
2729
}
2830
}

Tests/ComposableArchitectureTests/ViewStoreTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,10 +183,10 @@ final class ViewStoreTests: XCTestCase {
183183
return .task { .response }
184184
}
185185
}
186-
186+
187187
let store = Store(initialState: false, reducer: reducer)
188188
let viewStore = ViewStore(store, observe: { $0 })
189-
189+
190190
XCTAssertEqual(viewStore.state, false)
191191
await viewStore.send(.tapped, while: { $0 })
192192
XCTAssertEqual(viewStore.state, false)

0 commit comments

Comments
 (0)