JS backend: fix tests after move testTrue and testFalse to common place

This commit is contained in:
Zalim Bashorov
2015-06-03 17:26:17 +03:00
parent 430a3c121d
commit 4f0a858e93
4 changed files with 15 additions and 23 deletions
@@ -1,7 +1,10 @@
// CHECK_NOT_CALLED_IN_SCOPE: scope=box function=toString
package foo
fun box(): String {
var name = "Hello"
return ("o${name}o");
assertEquals("oHelloo", "o${name}o")
return "OK";
}