Skip to content

Commit

Permalink
Fix compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Supereg committed Nov 3, 2023
1 parent c838ac3 commit 6239052
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
17 changes: 10 additions & 7 deletions Tests/UITests/TestApp/Localizable.xcstrings
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,7 @@
"Error Description" : {

},
"First Placeholder" : {

},
"First Title" : {
"First Name" : {

},
"Hello Throwing World" : {
Expand All @@ -34,6 +31,9 @@
}
}
}
},
"Last Name" : {

},
"LAZY_TEXT" : {
"localizations" : {
Expand All @@ -48,13 +48,16 @@
"Reset" : {

},
"Second Placeholder" : {
"Show Tool Picker" : {

},
"Second Title" : {
"SpeziPersonalInfo" : {

},
"Show Tool Picker" : {
"SpeziViews" : {

},
"Targets" : {

},
"This is a default error description!" : {
Expand Down
6 changes: 3 additions & 3 deletions Tests/UITests/TestAppUITests/XCUIApplication+Targets.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import XCTest

extension XCUIApplication {
func open(target: String) {
XCTAssertTrue(app.navigationBars.staticTexts["Targets"].waitForExistence(timeout: 6.0))
XCTAssertTrue(app.buttons[target].waitForExistence(timeout: 0.5))
app.buttons[target].tap()
XCTAssertTrue(navigationBars.staticTexts["Targets"].waitForExistence(timeout: 6.0))
XCTAssertTrue(buttons[target].waitForExistence(timeout: 0.5))
buttons[target].tap()
}
}

0 comments on commit 6239052

Please sign in to comment.