From 7c0c95dca04c88af2a573828a2beedef01cd43b5 Mon Sep 17 00:00:00 2001 From: Barry Gordon Date: Tue, 28 Sep 2021 11:29:35 +0100 Subject: [PATCH] Fix test --- __tests__/main.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__tests__/main.test.ts b/__tests__/main.test.ts index 8e467da..5749e2c 100644 --- a/__tests__/main.test.ts +++ b/__tests__/main.test.ts @@ -68,7 +68,7 @@ describe('run', () => { test('it fails the workflow', async () => { await run(context) - expect(core.setFailed).not.toHaveBeenCalled() + expect(core.setFailed).toHaveBeenCalled() expect(core.info).toHaveBeenCalledWith( "Dependabot Updater Action does not support 'issue_created' events." )