Skip to content

Commit

Permalink
Fix ktlint issues in ContractsExtensions
Browse files Browse the repository at this point in the history
  • Loading branch information
zltnDC committed Sep 14, 2023
1 parent 94694dc commit ae1f78d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ private fun Selector.isEmpty(): Boolean {
!hasEnabled() &&
!hasFocused() &&
!hasPkg()
)
)
}

fun Selector.toUiSelector(): UiSelector {
Expand Down Expand Up @@ -203,8 +203,8 @@ fun DartGroupEntry.listTestsFlat(parentGroupName: String = ""): List<DartGroupEn
DartGroupEntry(
name = "$parentGroupName ${test.name}",
type = GroupEntryType.test,
entries = listOf(),
),
entries = listOf()
)
)
} else if (test.type == GroupEntryType.group) {
if (parentGroupName.isEmpty()) {
Expand Down

0 comments on commit ae1f78d

Please sign in to comment.