Minor. Update reference to issue.

This commit is contained in:
Ilya Ryzhenkov
2014-06-06 01:45:29 +04:00
committed by Andrey Breslav
parent 4e4d0b448c
commit f94b79fac3
@@ -105,7 +105,7 @@ abstract class IterableTests<T : Iterable<String>>(val data: T, val empty: T) {
Test fun filter() {
val foo = data.filter { it.startsWith("f") }
// TODO uncomment this when KT-4651 will be fixed
// TODO uncomment this when KT-2468 will be fixed
//expect(true) { foo is List<String> }
expect(true) { foo.all { it.startsWith("f") } }
expect(1) { foo.size }
@@ -114,7 +114,7 @@ abstract class IterableTests<T : Iterable<String>>(val data: T, val empty: T) {
Test fun filterNot() {
val notFoo = data.filterNot { it.startsWith("f") }
// TODO uncomment this when KT-4651 will be fixed
// TODO uncomment this when KT-2468 will be fixed
//expect(true) { notFoo is List<String> }
expect(true) { notFoo.none { it.startsWith("f") } }
expect(1) { notFoo.size }