5
0
Fork 0
mirror of https://github.com/hashicorp/vault-action.git synced 2025-11-10 08:36:55 +00:00

chore(test): actually rename everything

This commit is contained in:
Richard Simpson 2020-02-03 21:36:10 -06:00
parent c9947f5ee9
commit 83a0917c47
3 changed files with 3 additions and 3 deletions

View file

@ -124,7 +124,7 @@ jobs:
with: with:
url: http://localhost:${{ job.services.vault.ports[8200] }} url: http://localhost:${{ job.services.vault.ports[8200] }}
token: testtoken token: testtoken
engine-name: my-secret path: my-secret
kv-version: 1 kv-version: 1
secrets: | secrets: |
test altSecret ; test altSecret ;

View file

@ -103,7 +103,7 @@ describe('integration', () => {
function mockEngineName(name) { function mockEngineName(name) {
when(core.getInput) when(core.getInput)
.calledWith('engine-name') .calledWith('path')
.mockReturnValueOnce(name); .mockReturnValueOnce(name);
} }

View file

@ -296,7 +296,7 @@ function mockInput(secrets) {
function mockEngineName(name) { function mockEngineName(name) {
when(core.getInput) when(core.getInput)
.calledWith('engine-name') .calledWith('path')
.mockReturnValueOnce(name); .mockReturnValueOnce(name);
} }