But that `initialState` object in the assert is th...
# orbit-mvi
r
But that
initialState
object in the assert is the one I passed in in the `.test()`method, not the one from my view model:
Copy code
class AnalyticsConsentViewModel(val prefs: Preferences) : ViewModel(),
    ContainerHost<AnalyticsConsentState, NavigationEvent> {
    override val container: Container<AnalyticsConsentState, NavigationEvent> =
        container(AnalyticsConsentState(consentGiven = true))