Fix error in tests

This commit is contained in:
krlvm 2021-03-27 18:11:39 +03:00
parent 44f3a7484d
commit 32a159d48f
No known key found for this signature in database
GPG Key ID: B8552A91FD265536
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ class FeedGroupIconTest {
val usedIcons = HashSet<Int>()
for (groupIcon in FeedGroupIcon.values()) {
val added = usedIcons.add(groupIcon.drawableResourceAttr)
val added = usedIcons.add(groupIcon.drawableResource)
assertTrue("Repeated icon (current item: ${groupIcon.name} - ${groupIcon.id})", added)
}
}