Remove obsolete test for KT-1131

This commit is contained in:
Ilya Gorbunov
2015-10-13 01:21:18 +03:00
parent 2cdd413590
commit c58d21a1e7
-23
View File
@@ -1,23 +0,0 @@
package test.stdlib.issues
import kotlin.test.*
import org.junit.Test as test
private fun listDifference<T>(first : List<T>, second : List<T>) : List<T> {
return first.filter{ !second.contains(it) }.toList()
}
class StdLibIssuesTest {
@test fun test_KT_1131() {
val data = arrayListOf("blah", "foo", "bar")
val filterValues = arrayListOf("bar", "something", "blah")
expect(arrayListOf("foo")) {
val answer = listDifference(data, filterValues)
println("Found answer ${answer}")
answer
}
}
}