pull/310/head
Frostebite 2021-12-30 21:11:58 +00:00
parent 4b3df4c3cf
commit e79775fb93
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ describe('Cloud Runner', () => {
for (const element of environmentVariables) {
if (element.value !== undefined && typeof element.value !== 'function') {
if (typeof element.value === `string`) {
element.value = element.value.toString().replace(/\s+/g, '');
element.value = element.value.replace(/\s+/g, '');
}
expect(newLinePurgedFile).toContain(`${element.name}=${element.value}`);
}