Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
pantasystem committed Nov 28, 2023
1 parent 8ad3f19 commit 6df876b
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ class NoteDTOEntityConverterTest {
)
)
)
},
mock() {
onBlocking {
findAndConvertToMap(any())
} doReturn Result.success(emptyMap())
}
)

Expand Down Expand Up @@ -135,6 +140,11 @@ class NoteDTOEntityConverterTest {
)
)
)
},
mock() {
onBlocking {
findAndConvertToMap(any())
} doReturn Result.success(emptyMap())
}
)

Expand Down Expand Up @@ -228,6 +238,11 @@ class NoteDTOEntityConverterTest {
)
)
)
},
mock() {
onBlocking {
findAndConvertToMap(any())
} doReturn Result.success(emptyMap())
}
)

Expand Down

0 comments on commit 6df876b

Please sign in to comment.