testFilterIntoLinkedList test uncommented; Maven dependencies update

This commit is contained in:
Evgeny Goldin
2012-03-21 15:12:00 +01:00
parent be7ac2d613
commit 9caca33ac6
2 changed files with 4 additions and 6 deletions
-2
View File
@@ -66,7 +66,6 @@ class CollectionTest() : TestCase() {
assertEquals(arrayList("foo"), foo)
}
/*
fun testFilterIntoLinkedList() {
// TODO would be nice to avoid the <String>
val foo = data.filterTo(linkedList<String>()){it.startsWith("f")}
@@ -81,7 +80,6 @@ class CollectionTest() : TestCase() {
foo is LinkedList<String>
}
}
*/
fun testFilterIntoSet() {
// TODO would be nice to avoid the <String>