Split long line

This commit is contained in:
Benoit Marty 2025-09-13 00:54:44 +02:00
parent cca195a1a5
commit c90332bb6e

View file

@ -77,8 +77,11 @@ class DefaultPreferencesEntryPointTest {
@Test
fun `test initial target to nav target mapping`() {
assertThat(PreferencesEntryPoint.InitialTarget.Root.toNavTarget()).isEqualTo(PreferencesFlowNode.NavTarget.Root)
assertThat(PreferencesEntryPoint.InitialTarget.NotificationSettings.toNavTarget()).isEqualTo(PreferencesFlowNode.NavTarget.NotificationSettings)
assertThat(PreferencesEntryPoint.InitialTarget.NotificationTroubleshoot.toNavTarget()).isEqualTo(PreferencesFlowNode.NavTarget.TroubleshootNotifications)
assertThat(PreferencesEntryPoint.InitialTarget.Root.toNavTarget())
.isEqualTo(PreferencesFlowNode.NavTarget.Root)
assertThat(PreferencesEntryPoint.InitialTarget.NotificationSettings.toNavTarget())
.isEqualTo(PreferencesFlowNode.NavTarget.NotificationSettings)
assertThat(PreferencesEntryPoint.InitialTarget.NotificationTroubleshoot.toNavTarget())
.isEqualTo(PreferencesFlowNode.NavTarget.TroubleshootNotifications)
}
}