From b904025b300611ba5e64327d6e015a739f9e4291 Mon Sep 17 00:00:00 2001 From: Tom Proctor Date: Tue, 26 Apr 2022 14:24:41 +0100 Subject: [PATCH] Delete unused test helpers --- integrationTests/enterprise/enterprise.test.js | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/integrationTests/enterprise/enterprise.test.js b/integrationTests/enterprise/enterprise.test.js index cca739f..7ba9583 100644 --- a/integrationTests/enterprise/enterprise.test.js +++ b/integrationTests/enterprise/enterprise.test.js @@ -289,15 +289,3 @@ function mockInput(secrets) { .calledWith('secrets', expect.anything()) .mockReturnValueOnce(secrets); } - -function mockEngineName(name) { - when(core.getInput) - .calledWith('path', expect.anything()) - .mockReturnValueOnce(name); -} - -function mockVersion(version) { - when(core.getInput) - .calledWith('kv-version', expect.anything()) - .mockReturnValueOnce(version); -}