diff --git a/src/model/cloud-runner/cloud-runner.test.ts b/src/model/cloud-runner/cloud-runner.test.ts index 5bf1a1a1..8bfd7808 100644 --- a/src/model/cloud-runner/cloud-runner.test.ts +++ b/src/model/cloud-runner/cloud-runner.test.ts @@ -35,7 +35,7 @@ describe('Cloud Runner', () => { expect(file).toContain(`${testSecretName}=${testSecretValue}`); const inputKeys = Object.getOwnPropertyNames(Input); for (const element of inputKeys) { - if (Input[element] !== undefined && typeof Input[element] != 'function') { + if (Input[element] !== undefined && typeof Input[element] !== 'function') { expect( file.replace(/\s+/g, '').replace(new RegExp(`\\[${CloudRunnerStatics.logPrefix}\\]`, 'g'), ''), ).toContain(`${element}=${Input[element].toString().replace(/\s+/g, '')}`);