Regenerate tests

This fixes project compilation after incorrect merge of
da4097f4/e89a87b2 and 4ed64b02
This commit is contained in:
Alexander Udalov
2019-11-09 00:42:10 +01:00
parent f9b66d57cf
commit f7ef16d2d5
4 changed files with 24 additions and 9 deletions
@@ -809,11 +809,11 @@ public class SmartCompletionHandlerTestGenerated extends AbstractSmartCompletion
@RunWith(JUnit3RunnerWithInners.class)
public static class SuspendLambdaSignature extends AbstractSmartCompletionHandlerTest {
private void runTest(String testDataFilePath) throws Exception {
KotlinTestUtils.runTest(this::doTest, TargetBackend.ANY, testDataFilePath);
KotlinTestUtils.runTest(this::doTest, this, testDataFilePath);
}
public void testAllFilesPresentInSuspendLambdaSignature() throws Exception {
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/idea-completion/testData/handlers/smart/suspendLambdaSignature"), Pattern.compile("^(.+)\\.kt$"), TargetBackend.ANY, true);
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/idea-completion/testData/handlers/smart/suspendLambdaSignature"), Pattern.compile("^(.+)\\.kt$"), true);
}
@TestMetadata("NoAdditionalSpace.kt")