[JS][tests] Rename KLIB binary compatibility tests to KLIB evolution tests

This commit is contained in:
Dmitriy Dolovov
2023-03-31 17:02:16 +02:00
committed by Space Team
parent bd4acfc4dc
commit 5970cfff75
3 changed files with 7 additions and 7 deletions
@@ -3,7 +3,7 @@
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.js.testOld.compatibility.binary;
package org.jetbrains.kotlin.js.testOld.klib;
import com.intellij.testFramework.TestDataPath;
import org.jetbrains.kotlin.test.JUnit3RunnerWithInners;
@@ -21,7 +21,7 @@ import java.util.regex.Pattern;
@TestMetadata("compiler/testData/binaryCompatibility/klibEvolution")
@TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class)
public class JsKlibBinaryCompatibilityTestGenerated extends AbstractJsKlibBinaryCompatibilityTest {
public class JsKlibEvolutionTestGenerated extends AbstractJsKlibEvolutionTest {
private void runTest(String testDataFilePath) throws Exception {
KotlinTestUtils.runTest0(this::doTest, TargetBackend.JS_IR, testDataFilePath);
}