From f94b79fac3f8b2b737c0248e4ca20011268085b7 Mon Sep 17 00:00:00 2001 From: Ilya Ryzhenkov Date: Fri, 6 Jun 2014 01:45:29 +0400 Subject: [PATCH] Minor. Update reference to issue. --- libraries/stdlib/test/collections/IterableTests.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/stdlib/test/collections/IterableTests.kt b/libraries/stdlib/test/collections/IterableTests.kt index 10a5765bf5d..1ecee2492c6 100644 --- a/libraries/stdlib/test/collections/IterableTests.kt +++ b/libraries/stdlib/test/collections/IterableTests.kt @@ -105,7 +105,7 @@ abstract class IterableTests>(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 } expect(true) { foo.all { it.startsWith("f") } } expect(1) { foo.size } @@ -114,7 +114,7 @@ abstract class IterableTests>(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 } expect(true) { notFoo.none { it.startsWith("f") } } expect(1) { notFoo.size }