no message

This commit is contained in:
2023-11-17 22:03:13 +03:00
parent e9f878c5a6
commit d3fc9a8f8e
16 changed files with 86 additions and 70 deletions

View File

@@ -29,7 +29,7 @@ public class AbortSapforTaskPackage extends TestingSystemPass<SapforTasksPackage
break;
default:
TasksPackageToKill tasksPackageToKill = new TasksPackageToKill();
tasksPackageToKill.packageName = target.id;
tasksPackageToKill.packageName = String.valueOf(target.id);
packagesToKill.add(tasksPackageToKill);
return true;
}

View File

@@ -42,7 +42,7 @@ public class DownloadSapforTasksPackage extends TestingSystemPass<SapforTasksPac
@Override
protected void ServerAction() throws Exception {
Command(new ServerExchangeUnit_2021(ServerCode.DownloadSapforTasksPackage, Current.getAccount().email, target.id));
response.Unpack(tmpArchive = Utils.getTempFileName(target.id));
response.Unpack(tmpArchive = Utils.getTempFileName(String.valueOf(target.id)));
}
@Override
protected boolean validate() {

View File

@@ -201,7 +201,7 @@ public class StartSapforTests extends TestingSystemPass<SapforTasksPackage> {
@Override
protected void ServerAction() throws Exception {
target = new SapforTasksPackage();
target.genName();
//target.genName();
//--
Vector<String> testsIds = new Vector<>();
Vector<String> configurationsIds = new Vector<>();