From 4f104f8afed5483dcfee4f7c9eb5a9c10d9d5eb7 Mon Sep 17 00:00:00 2001 From: Nick Cipollo Date: Thu, 31 Mar 2022 18:08:21 -0400 Subject: [PATCH] Ensure test failures still work --- __tests__/Inputs.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__tests__/Inputs.test.ts b/__tests__/Inputs.test.ts index b249b93..4acb119 100644 --- a/__tests__/Inputs.test.ts +++ b/__tests__/Inputs.test.ts @@ -41,7 +41,7 @@ describe('Inputs', () => { describe('commit', () => { it('returns commit', () => { mockGetInput.mockReturnValueOnce('commit') - expect(inputs.commit).toBe('commit') + expect(inputs.commit).toBe('commitxx') }) it('returns undefined when omitted', () => {