From 83a0917c479f9d17e5670053b4a7fab073a1cbe9 Mon Sep 17 00:00:00 2001 From: Richard Simpson Date: Mon, 3 Feb 2020 21:36:10 -0600 Subject: [PATCH] chore(test): actually rename everything --- .github/workflows/build.yml | 2 +- integrationTests/basic/integration.test.js | 2 +- integrationTests/enterprise/enterprise.test.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 01105c1..163fee9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -124,7 +124,7 @@ jobs: with: url: http://localhost:${{ job.services.vault.ports[8200] }} token: testtoken - engine-name: my-secret + path: my-secret kv-version: 1 secrets: | test altSecret ; diff --git a/integrationTests/basic/integration.test.js b/integrationTests/basic/integration.test.js index 04b08d8..22b52d6 100644 --- a/integrationTests/basic/integration.test.js +++ b/integrationTests/basic/integration.test.js @@ -103,7 +103,7 @@ describe('integration', () => { function mockEngineName(name) { when(core.getInput) - .calledWith('engine-name') + .calledWith('path') .mockReturnValueOnce(name); } diff --git a/integrationTests/enterprise/enterprise.test.js b/integrationTests/enterprise/enterprise.test.js index 280f811..6c137bb 100644 --- a/integrationTests/enterprise/enterprise.test.js +++ b/integrationTests/enterprise/enterprise.test.js @@ -296,7 +296,7 @@ function mockInput(secrets) { function mockEngineName(name) { when(core.getInput) - .calledWith('engine-name') + .calledWith('path') .mockReturnValueOnce(name); }