Skip to content

Commit cafe630

Browse files
committed
Revert "Reorder test classpath elements to promote instrumented modules over the regular classpath"
This reverts commit a8d1715.
1 parent 59be876 commit cafe630

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
### Changed
1111

1212
- Move `localPlatformArtifacts()` to the top of the `defaultRepositories()` list
13-
- Reorder test classpath elements to promote instrumented modules over the regular classpath
1413

1514
### Fixed
1615

src/main/kotlin/org/jetbrains/intellij/platform/gradle/tasks/TestIdeTask.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ abstract class TestIdeTask : Test(), TestableAware, IntelliJPlatformVersionAware
104104
.toSet()
105105
})
106106

107-
classpath = instrumentedCode + instrumentedTestCode + intellijPlatformTestClasspathConfiguration + classpath + productModules
107+
classpath = instrumentedCode + instrumentedTestCode + classpath + intellijPlatformTestClasspathConfiguration + productModules
108108
testClassesDirs = instrumentedTestCode + testClassesDirs
109109
javaLauncher = sourceTask.runtimeDirectory.zip(sourceTask.runtimeMetadata) { directory, metadata ->
110110
IntelliJPlatformJavaLauncher(directory, metadata)

0 commit comments

Comments
 (0)