[JS TESTS] fix moduleDescriptor dependency configuration
The dependency list doesn't get copied in the `setDependencies` API which leads to all modules depending on each other.
This commit is contained in:
committed by
TeamCityServer
parent
dbbc30a6a2
commit
a9b99a8eea
+1
-1
@@ -298,7 +298,7 @@ class ClassicFrontendFacade(
|
||||
)
|
||||
if (isBuiltIns) builtInsModule = moduleDescriptor.builtIns
|
||||
dependencies += moduleDescriptor
|
||||
moduleDescriptor.setDependencies(dependencies)
|
||||
moduleDescriptor.setDependencies(ArrayList(dependencies))
|
||||
|
||||
Pair(moduleDescriptor, resolvedLibrary.library)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user