From 22184c371b70f759943f00fd593f71b5551713b7 Mon Sep 17 00:00:00 2001 From: Barry Gordon Date: Tue, 14 Sep 2021 10:54:38 +0100 Subject: [PATCH] Remove some last envvars from integration tests --- __tests__/updater-integration.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/__tests__/updater-integration.test.ts b/__tests__/updater-integration.test.ts index d604181..7ad1b77 100644 --- a/__tests__/updater-integration.test.ts +++ b/__tests__/updater-integration.test.ts @@ -20,8 +20,8 @@ describe('Updater', () => { const dependabotApiDockerUrl = `http://${internalDockerHost}:${FAKE_SERVER_PORT}` const params = new JobParameters( 1, - process.env.JOB_TOKEN || 'job-token', - process.env.CREDENTIALS_TOKEN || 'cred-token', + 'job-token', + 'cred-token', dependabotApiUrl, dependabotApiDockerUrl )