Skip to content

Commit 0cc1e10

Browse files
mbrandonwp4checo
authored andcommitted
Run swift-format
(cherry picked from commit 9e83d195fbc6c3a58a35fb11de01c6a2947b4935)
1 parent f0a31ec commit 0cc1e10

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Examples/Integration/Integration/IntegrationApp.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ struct IntegrationApp: App {
3737
)
3838
)
3939
}
40-
40+
4141
NavigationLink("Binding Animations Test Bench") {
4242
BindingsAnimationsTestBench(
4343
store: Store(

Examples/Integration/IntegrationUITests/EscapedWithViewStoreTests.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,24 +17,24 @@ final class EscapedWithViewStoreTests: XCTestCase {
1717
XCTAssertEqual(app.staticTexts["EscapedLabel"].value as? String, "10")
1818

1919
app.buttons["Button"].tap()
20-
20+
2121
XCTAssertEqual(app.staticTexts["Label"].value as? String, "11")
2222
XCTAssertEqual(app.staticTexts["EscapedLabel"].value as? String, "11")
23-
23+
2424
let stepper = app.steppers["Stepper"]
25-
25+
2626
stepper.buttons["Increment"].tap()
2727
stepper.buttons["Increment"].tap()
2828
stepper.buttons["Increment"].tap()
2929
stepper.buttons["Increment"].tap()
3030

3131
XCTAssertEqual(app.staticTexts["Label"].value as? String, "15")
3232
XCTAssertEqual(app.staticTexts["EscapedLabel"].value as? String, "15")
33-
33+
3434
stepper.buttons["Decrement"].tap()
3535
stepper.buttons["Decrement"].tap()
3636
stepper.buttons["Decrement"].tap()
37-
37+
3838
XCTAssertEqual(app.staticTexts["Label"].value as? String, "12")
3939
XCTAssertEqual(app.staticTexts["EscapedLabel"].value as? String, "12")
4040
}

0 commit comments

Comments
 (0)