fix testdata

GitOrigin-RevId: a15cdef60fa2adf485080eaa8747d656c2e17f66
This commit is contained in:
Anna Kozlova
2019-10-02 10:07:03 +00:00
committed by intellij-monorepo-bot
parent 96a20d974e
commit 72a4e0fd27
@@ -148,9 +148,10 @@ public class ModulePathTest extends BaseConfigurationTestCase {
checkLibrariesOnPathList(module, params4Tests.getModulePath());
//ensure downloaded junit launcher dependencies are in module path as well
assertSize(2, params4Tests.getClassPath().getPathList());
assertContainsElements(params4Tests.getClassPath().getPathList(), PathUtil.getJarPathForClass(JUnitStarter.class));
assertContainsElements(params4Tests.getClassPath().getPathList(), TestObject.getJUnit5RtFile().getPath());
PathsList classPath = params4Tests.getClassPath();
assertSize(3, classPath.getPathList());
assertContainsElements(classPath.getPathList(), PathUtil.getJarPathForClass(JUnitStarter.class));
assertContainsElements(classPath.getPathList(), TestObject.getJUnit5RtFile().getPath());
//production module output is on the module path
PathsList modulePath = params4Tests.getModulePath();