chore(android): fix linter issues (#7951)

Not sure how these slipped CI but it is currently red.
This commit is contained in:
Thomas Eizinger
2025-01-30 00:15:39 +00:00
committed by GitHub
parent 6a73406194
commit 6882961462

View File

@@ -149,7 +149,8 @@ class MainActivityTest {
public override fun matchesSafely(view: View): Boolean {
val parent = view.parent
return parent is ViewGroup && parentMatcher.matches(parent) &&
return parent is ViewGroup &&
parentMatcher.matches(parent) &&
view == parent.getChildAt(position)
}
}