better named tests and log local-docker params
parent
4f2e9040ed
commit
a16c0c7a48
|
|
@ -4718,7 +4718,7 @@ class TaskParameterSerializer {
|
|||
x.name = __1.Input.ToEnvVarFormat(x.name);
|
||||
x.value = `${x.value}`;
|
||||
if (Number.parseInt(x.name) !== undefined) {
|
||||
core.info(`[ERROR] found a number in task param serializer`);
|
||||
core.info(`[ERROR] found a number in task param serializer ${JSON.stringify(x)}`);
|
||||
}
|
||||
return x;
|
||||
});
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -37,7 +37,7 @@ export class TaskParameterSerializer {
|
|||
x.value = `${x.value}`;
|
||||
|
||||
if (Number.parseInt(x.name) !== undefined) {
|
||||
core.info(`[ERROR] found a number in task param serializer`);
|
||||
core.info(`[ERROR] found a number in task param serializer ${JSON.stringify(x)}`);
|
||||
}
|
||||
|
||||
return x;
|
||||
|
|
|
|||
Loading…
Reference in New Issue