Dropped some TODOs

#KT-2564 Obsolete. Looks like, it's fixed in dcddd04.
This commit is contained in:
Zalim Bashorov
2014-02-05 16:41:10 +04:00
parent ffa2a84170
commit 33360c2528
4 changed files with 51 additions and 56 deletions
@@ -9,10 +9,8 @@ class StandardCollectionTest() : TestCase() {
fun testDisabled() {
}
/*
fun testAny() {
// TODO requires KT-924 to be implemented
val data: Iterable<String> = kotlin.util.arrayList("foo", "bar")
val data: Iterable<String> = listOf("foo", "bar")
assertTrue {
data.any{it.startsWith("f")}
@@ -21,5 +19,4 @@ class StandardCollectionTest() : TestCase() {
data.any{it.startsWith("x")}
}
}
*/
}