You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: features/finances/impl/src/main/kotlin/br/com/mob1st/features/finances/impl/domain/usecases/ProceedBuilderUseCase.kt
+1-1
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ internal class ProceedBuilderUseCase(
23
23
*/
24
24
suspendoperatorfuninvoke(builder:BudgetBuilder) {
25
25
val remainingInputs = builder.calculateRemainingInputs()
Copy file name to clipboardExpand all lines: features/finances/impl/src/main/kotlin/br/com/mob1st/features/finances/impl/ui/builder/navigation/BuilderNavRoute.kt
Copy file name to clipboardExpand all lines: features/finances/impl/src/main/kotlin/br/com/mob1st/features/finances/impl/ui/builder/navigation/BuilderRouter.kt
Copy file name to clipboardExpand all lines: features/finances/impl/src/main/kotlin/br/com/mob1st/features/finances/impl/ui/builder/steps/BudgetBuilderStepUiState.kt
Copy file name to clipboardExpand all lines: features/finances/impl/src/main/kotlin/br/com/mob1st/features/finances/impl/ui/navgraph/BudgetBuilderNavGraphImpl.kt
Copy file name to clipboardExpand all lines: features/finances/impl/src/test/kotlin/br/com/mob1st/features/finances/impl/domain/usecases/StartBuilderStepUseCaseTest.kt
+2-2
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ class StartBuilderStepUseCaseTest {
47
47
step.isExpense,
48
48
step.type,
49
49
)
50
-
} returns 1L
50
+
} returns flowOf(1L)
51
51
52
52
// When
53
53
useCase(step)
@@ -68,7 +68,7 @@ class StartBuilderStepUseCaseTest {
68
68
step.isExpense,
69
69
step.type,
70
70
)
71
-
} returns 0L
71
+
} returns flowOf(0L)
72
72
every { categorySuggestionRepository.getByStep(step) } returns flowOf(suggestions)
73
73
every { categoryFactory.create(eq(step), any()) } answers {
Copy file name to clipboardExpand all lines: features/finances/impl/src/test/kotlin/br/com/mob1st/features/finances/impl/infra/data/repositories/categories/CategoryRepositoryImplTest.kt
0 commit comments