Fix stdlib tests on JVM

#KT-5064 Open
This commit is contained in:
Alexander Udalov
2014-05-21 02:04:36 +04:00
parent af3d56b44e
commit 9c04c9ea38
@@ -204,7 +204,7 @@ class ArraysTest {
}
test fun toSortedList() {
assertEquals(listOf<Nothing>(), array<Nothing>().toSortedList())
assertEquals(listOf<Long>(), array<Long>().toSortedList())
assertEquals(listOf(1), array(1).toSortedList())
assertEquals(listOf("aab", "aba", "ac"), array("ac", "aab", "aba").toSortedList())
}