0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-20 12:02:16 +02:00

[Kotlin Cleanup] CollectionUtilsTest

This commit is contained in:
oyeraghib 2022-04-29 20:35:57 +05:30 committed by Mike Hardy
parent f13bd1fab5
commit 62c82d62bc

View File

@ -16,7 +16,7 @@
package com.ichi2.utils
import com.ichi2.testutils.AnkiAssert.assertEqualsArrayList
import org.hamcrest.CoreMatchers.`is`
import org.hamcrest.CoreMatchers.equalTo
import org.hamcrest.MatcherAssert.assertThat
import org.junit.Test
@ -24,9 +24,8 @@ class CollectionUtilsTest {
var testList = arrayListOf(1, 2, 3)
@Test
@KotlinCleanup("is --> equalTo")
fun testGetLastListElement() {
assertThat(CollectionUtils.getLastListElement(testList), `is`(3))
assertThat(CollectionUtils.getLastListElement(testList), equalTo(3))
}
@Test(expected = IndexOutOfBoundsException::class)