JS: arrayToString should use toString() instead of direct join to handle nulls properly
#KT-8663 Fixed
This commit is contained in:
@@ -26,6 +26,10 @@ import org.junit.Test as test
|
||||
|
||||
class ReversedViewsTest {
|
||||
|
||||
test fun testNullToString() {
|
||||
assertEquals("[null]", listOf<String?>(null).asReversed().toString())
|
||||
}
|
||||
|
||||
test fun testBehavior() {
|
||||
val original = listOf(2L, 3L, Long.MAX_VALUE)
|
||||
val reversed = original.reverse()
|
||||
|
||||
Reference in New Issue
Block a user