Skip to content

Commit

Permalink
[fix] [517] Fix crash by setting appropriate string
Browse files Browse the repository at this point in the history
  • Loading branch information
Shayokh144 committed Aug 25, 2023
1 parent 00e6deb commit 07ef7e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ final class HomeViewController: UIViewController {
view.backgroundColor = .white

let helloLabel = UILabel()
helloLabel.text = "Hello"
helloLabel.text = "Hello, world!"
helloLabel.translatesAutoresizingMaskIntoConstraints = false

view.addSubview(helloLabel)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ final class ApplicationSpec: QuickSpec {
context("when opens") {

it("shows its UI components") {
self.tester().waitForView(withAccessibilityLabel: "Hello")
self.tester().waitForView(withAccessibilityLabel: "Hello, world!")
}
}
}
Expand Down

0 comments on commit 07ef7e5

Please sign in to comment.