Skip to content

Commit

Permalink
ktlint checks
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdyrod committed Apr 16, 2024
1 parent 8e1e124 commit f689665
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ fun MultiSelectInputScreen() {
checked = i == 2,
enabled = true,
textInput = "Opt. $i",
)
),
)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -401,9 +401,9 @@ class InputDropDownTest {
@Test
fun shouldShowSearchForMoreOptionTextWhenMoreThan50Option() {
val dropdownItems = mutableListOf<DropdownItem>()
for (i in 1 .. 100) {
for (i in 1..100) {
dropdownItems.add(
DropdownItem("Option $i")
DropdownItem("Option $i"),
)
}

Expand Down

0 comments on commit f689665

Please sign in to comment.