fix отображения пакетов

This commit is contained in:
2023-12-25 17:55:15 +03:00
parent e5f3230c9c
commit 0370573269
4 changed files with 18 additions and 8 deletions

View File

@@ -49,7 +49,7 @@ public class PerformSapforTask extends Pass_2021<SapforTask> {
String.valueOf(set_json.id),
String.valueOf(configuration_json.id),
target.test_description).toFile();
root = new File(Global.Home, String.valueOf(configuration_json.id));
root = Paths.get(Global.Home, String.valueOf(set_json.id), String.valueOf(configuration_json.id)).toFile();
task = null;
//--->>
return true;
@@ -114,7 +114,7 @@ public class PerformSapforTask extends Pass_2021<SapforTask> {
@Override
protected void body() throws Exception {
target.StartDate = new Date().getTime();
target.versions.add(version_json = new SapforVersion_json(target.test_description, ""));
target.versions.add(version_json = new SapforVersion_json(target.test_description, "исходная"));
for (PassCode_2021 code : configuration_json.codes) {
if (parse()) {
if (code.equals(PassCode_2021.CreateParallelVariants))