Cleanup UI tests

This commit is contained in:
Alfonso Grillo
2022-10-28 16:56:27 +02:00
parent 79e25d2351
commit 010e006ec6
2 changed files with 0 additions and 10 deletions

View File

@@ -75,8 +75,6 @@ class UserSessionOverviewUITests: MockScreenTestCase {
let buttonId = "\(VectorL10n.userOtherSessionVerifiedAdditionalInfo) \(VectorL10n.userSessionLearnMore)"
let button = app.buttons[buttonId]
XCTAssertTrue(button.exists)
button.tap()
XCTAssertTrue(app.staticTexts[VectorL10n.userSessionVerifiedSessionTitle].exists)
}
func test_whenOtherUnverifiedSessionSelected_learnMoreButtonExists() {
@@ -84,7 +82,5 @@ class UserSessionOverviewUITests: MockScreenTestCase {
let buttonId = "\(VectorL10n.userOtherSessionUnverifiedAdditionalInfo) \(VectorL10n.userSessionLearnMore)"
let button = app.buttons[buttonId]
XCTAssertTrue(button.exists)
button.tap()
XCTAssertTrue(app.staticTexts[VectorL10n.userSessionUnverifiedSessionTitle].exists)
}
}