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
@@ -1,6 +1,6 @@
package foo
fun box(): Int {
fun box(): String {
val c = 3
val d = 5
var z = 0
@@ -17,5 +17,6 @@ fun box(): Int {
z = -1000;
}
}
return z
}
assertEquals(2, z)
return "OK"
}