KakaoCup / Kakao

Nice and simple DSL for Espresso in Kotlin
https://kakaocup.github.io/Kakao/
Apache License 2.0
324 stars 28 forks source link

ChipGroupActions: fix selectChip(text: String) method #123

Closed sashkir7 closed 4 months ago

sashkir7 commented 4 months ago

Fixed text comparison in method selectChip(text: String)

Before: chip.text == text - always false (compare CharSequence with String) After: text.contentEquals(chip.text)

Vacxe commented 4 months ago

Thanks for the contibution. Could you please add some tests for it as well and then I'll be happy to merge it.