Minor in JS backend tests: use checkFooBoxIsOk instead of fooBoxIsValue

This commit is contained in:
Zalim Bashorov
2015-06-03 17:40:47 +03:00
parent 92457543bc
commit 9d32f5e8ed
16 changed files with 32 additions and 34 deletions
@@ -4,6 +4,7 @@ fun box(): String {
val number = 3
val s1 = "${number - 1}${number}"
val s2 = "${5}${4}"
return "${s1}${s2}"
assertEquals("2354", "${s1}${s2}")
return "OK"
}