+= tests fix

This commit is contained in:
Evgeny Gerashchenko
2014-07-29 00:07:34 +04:00
parent b86affaa3a
commit 90b065e82b
8 changed files with 6 additions and 24 deletions
@@ -44,7 +44,7 @@ class ListSpecificTest {
Test fun mutableList() {
val items = listOf("beverage", "location", "name")
var list = arrayListOf<String>()
var list = listOf<String>()
for (item in items) {
list += item
}