Skip to content

Commit

Permalink
Merge pull request #11 from alexaldev/main
Browse files Browse the repository at this point in the history
  • Loading branch information
NotWoods committed Sep 20, 2023
2 parents 1b7fdb7 + f3a071b commit 763d5e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/docs/mocking/verify.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class NavigationView(

init {
goToParkButton.setOnClickListener {
navigator.navigate("Park")
navigator.navigateTo("Park")
}
}
}
Expand All @@ -77,8 +77,8 @@ This test ensures that the button tells the navigator to go where we expect. If

```diff
goToParkButton.setOnClickListener {
- navigator.navigate("Park")
+ navigator.navigate("Parka")
- navigator.navigateTo("Park")
+ navigator.navigateTo("Parka")
}
```

Expand Down

0 comments on commit 763d5e9

Please sign in to comment.