JS: fix obsolete tests

This commit is contained in:
Alexey Andreev
2016-10-27 17:25:01 +03:00
parent a452260da6
commit 6791ed7bf3
9 changed files with 108 additions and 147 deletions
@@ -29,9 +29,6 @@ fun test(testName: String, ff: Any, fb: Any) {
fun box(): String {
val a = A()
test("foo()", { foo() }, { boo() })
test("foo(Int)", { foo(1) }, { boo(1) })
test("a.foo()", { a.foo() }, { a.boo() })
test("a.foo(Int)", { a.foo(1) }, { a.boo(1) })