JS: make some JVM tests compatible with JS BE

This commit is contained in:
Alexey Andreev
2016-12-30 15:09:08 +03:00
parent 70176dfacc
commit bad6f41d6e
5 changed files with 12 additions and 48 deletions
+2 -5
View File
@@ -1,9 +1,6 @@
// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
fun box(): String {
var invokeOrder = "";
val expectedResult = "1.0_0_1_L"
val expectedResult = "1_0_1_L"
val expectedInvokeOrder = "1_0_L"
var l = 1L
var i = 0
@@ -29,5 +26,5 @@ fun box(): String {
}
fun Double.test(a: Int, b: Long, c: () -> String): String {
return "${this}_${a}_${b}_${c()}"
return "${this.toInt()}_${a}_${b}_${c()}"
}