File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
src/org/jetbrains/kotlin/test/helper/actions Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change 37
37
38
38
<lang .inspectionSuppressor language =" kotlin" implementationClass =" org.jetbrains.kotlin.test.helper.inspections.UnusedDeclarationSuppressor" />
39
39
40
- <registryKey defaultValue =" false" description =" Support on-the-fly-generated tests in Kotlin Compiler DevKit." key =" kotlin.compiler.devkit.on.the.fly" />
41
-
42
40
<intentionAction >
43
41
<language >kotlin</language >
44
42
<className >org.jetbrains.kotlin.test.helper.intentions.CreateContextualOverloadIntention</className >
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ fun VirtualFile.collectTestDescriptions(
51
51
): List <TestDescription > {
52
52
val existing = collectTestMethodsIfTestData(project)
53
53
54
- if (existing.isEmpty() && Registry .` is `( " kotlin.compiler.devkit.on.the.fly " , false ) ) {
54
+ if (existing.isEmpty()) {
55
55
return parentsWithSelf
56
56
.drop(1 )
57
57
.takeWhile { it.getTestDataType(project) != null }
You can’t perform that action at this time.
0 commit comments