From bf29d4877214e7a4c9acf99424195d228c9b6782 Mon Sep 17 00:00:00 2001 From: James Strachan Date: Wed, 4 Jan 2012 09:00:03 +0000 Subject: [PATCH] removed a TODO --- testlib/test/CollectionTest.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/testlib/test/CollectionTest.kt b/testlib/test/CollectionTest.kt index 3cfd2f7b6fe..ec001fc66bd 100644 --- a/testlib/test/CollectionTest.kt +++ b/testlib/test/CollectionTest.kt @@ -41,8 +41,7 @@ class CollectionTest() : TestSupport() { fun testCount() { assertEquals(1, data.count{it.startsWith("b")}) - // TODO size should implement size property to be polymorphic with collections - assertEquals(2, data.count{it.length == 3}) + assertEquals(2, data.count{it.size == 3}) } fun testFilter() {