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
@@ -8,5 +8,6 @@ class Foo(val postfix: String) {
fun box(): String {
val a = Foo(" world!")
return a("hello")
}
assertEquals("hello world!", a("hello"))
return "OK"
}