Fix compilation errors in QuickFixMultiModuleTestGenerated

This commit is contained in:
Nikolay Krasko
2019-10-29 15:03:14 +03:00
parent df4ab4ed81
commit f5cdaafeb0
@@ -214,11 +214,11 @@ public class QuickFixMultiModuleTestGenerated extends AbstractQuickFixMultiModul
@RunWith(JUnit3RunnerWithInners.class)
public static class ChangeModifier extends AbstractQuickFixMultiModuleTest {
private void runTest(String testDataFilePath) throws Exception {
KotlinTestUtils.runTest(this::doTest, TargetBackend.ANY, testDataFilePath);
KotlinTestUtils.runTest(this::doTest, this, testDataFilePath);
}
public void testAllFilesPresentInChangeModifier() throws Exception {
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/multiModuleQuickFix/changeModifier"), Pattern.compile("^([^\\.]+)$"), TargetBackend.ANY, true);
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/multiModuleQuickFix/changeModifier"), Pattern.compile("^([^\\.]+)$"), true);
}
@TestMetadata("internal")