BIT-900: Adding state for each of the possible username state selections (#130)

This commit is contained in:
joshua-livefront
2023-10-18 14:54:11 -04:00
committed by GitHub
parent 8ae3f365b7
commit 36451a7bda
2 changed files with 196 additions and 3 deletions

View File

@@ -63,7 +63,7 @@ class GeneratorViewModelTest : BaseViewModelTest() {
viewModel.actionChannel.trySend(action)
val expectedState = initialState.copy(selectedType = GeneratorState.MainType.Username)
val expectedState = initialState.copy(selectedType = GeneratorState.MainType.Username())
assertEquals(expectedState, viewModel.stateFlow.value)
}