Replace ArrayList<Any>() with stdlib_emptyListClass() and fix test. #KT-6013 Fixed

This commit is contained in:
Ilya Ryzhenkov
2014-11-05 18:04:52 +03:00
parent 0dc68c2702
commit 24ee79aa2d
7 changed files with 23 additions and 17 deletions
@@ -197,7 +197,7 @@ public class StreamTest {
test fun flatMapOnEmpty() {
val result = streamOf<Int>().flatMap { streamOf(0..it) }
assertEquals(listOf<Int>(), result.toList())
assertTrue(result.none())
}
test fun flatMapWithEmptyItems() {