removed a TODO

This commit is contained in:
James Strachan
2012-01-04 09:00:03 +00:00
parent b2593b268e
commit bf29d48772
+1 -2
View File
@@ -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() {