Skip to content

Commit

Permalink
fix: test cov
Browse files Browse the repository at this point in the history
  • Loading branch information
yamilmedina committed Sep 21, 2023
1 parent 34e3863 commit bdc1d35
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ internal class SearchKnownUsersUseCaseImpl(
val sanitizedSearchQuery = searchQuery.lowercase()
return if (isUserLookingForHandle(sanitizedSearchQuery)) {
searchUserRepository.searchKnownUsersByHandle(
handle = sanitizedSearchQuery.substringAfter('@').substringBeforeLast('@'),
handle = sanitizedSearchQuery.substringAfter("@").substringBeforeLast("@"),
searchUsersOptions = searchUsersOptions
)
} else {
Expand Down

0 comments on commit bdc1d35

Please sign in to comment.