Clean up test skips after KT-17137

We need to clean these up since primitive array `is` checks work now

(cherry picked from commit b413e9ef51606c51ebfb21bd7ff646b0fb75470a)
This commit is contained in:
Egor Neliuba
2017-10-23 15:17:27 +03:00
committed by Anton Bannykh
parent 4a5e9bbc7f
commit 715d5e90ba
5 changed files with 0 additions and 18 deletions
@@ -231,12 +231,6 @@ class ArraysTest {
}
@Test fun contentDeepToString() {
// Don't run this test unless primitive array `is` checks are supported (KT-17137)
if ((intArrayOf() as Any) is Array<*>) {
assertTrue(true)
return
}
val arr = arrayOf("aa", 1, null, charArrayOf('d'))
assertEquals("[aa, 1, null, [d]]", arr.contentDeepToString())
}