[K/JS TEST] Fix the problem with running JS tests on Windows if the test has a long name

This commit is contained in:
Artem Kobzar
2023-04-14 10:46:52 +00:00
committed by Space Team
parent 949186b629
commit 73f8c984a1
7 changed files with 37 additions and 31 deletions
@@ -3,7 +3,7 @@
// RUN_PLAIN_BOX_FUNCTION
// INFER_MAIN_MODULE
// MODULE: overriden_external_method_with_same_name_method
// MODULE: lib
// FILE: lib.kt
external abstract class Foo {
abstract fun o(): String
@@ -31,7 +31,7 @@ Foo.prototype.k = function() {
}
function box() {
return test(new this["overriden_external_method_with_same_name_method"].Baz());
return test(new this["lib"].Baz());
}
function test(foo) {