Rename other navigation extensions per new naming convention (#134)

This commit is contained in:
Andrew Haisting
2023-10-19 09:33:16 -05:00
committed by GitHub
parent 329c310d58
commit a5581a093e
5 changed files with 28 additions and 29 deletions

View File

@@ -66,7 +66,7 @@ class RootNavScreenTest : BaseComposeTest() {
rootNavStateFlow.value = RootNavState.Auth
composeTestRule.runOnIdle {
fakeNavHostController.assertLastNavigation(
route = "auth",
route = "auth_graph",
navOptions = expectedNavOptions,
)
}
@@ -76,7 +76,7 @@ class RootNavScreenTest : BaseComposeTest() {
rootNavStateFlow.value = RootNavState.VaultUnlocked
composeTestRule.runOnIdle {
fakeNavHostController.assertLastNavigation(
route = "VaultUnlocked",
route = "vault_unlocked_graph",
navOptions = expectedNavOptions,
)
}