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:
Roman Golyshev
2021-06-28 14:10:33 +03:00
committed by teamcityserver
parent a9bb577154
commit 0d443d526d
@@ -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>