FIR IDE: Use more correct implementation of TestModuleSourceInfo::dependencies
When only `regularDependencies` were used, multiplatform tests were failing because `actual` modules did not see the `expected` ones
This commit is contained in:
committed by
teamcityserver
parent
a9bb577154
commit
0d443d526d
+1
-1
@@ -207,7 +207,7 @@ class TestModuleSourceInfo(
|
||||
get() = Name.identifier(testModule.name)
|
||||
|
||||
override fun dependencies(): List<ModuleInfo> =
|
||||
testModule.regularDependencies
|
||||
testModule.allDependencies
|
||||
.map { moduleInfoProvider.getModuleInfo(it.moduleName) }
|
||||
|
||||
override val expectedBy: List<ModuleInfo>
|
||||
|
||||
Reference in New Issue
Block a user