From b4d91feea1ab193652a8b7dfefd071025c0ba971 Mon Sep 17 00:00:00 2001 From: Matej Vobornik Date: Fri, 13 Sep 2024 13:03:11 +0200 Subject: [PATCH] update test name --- actions/utils.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/utils.test.ts b/actions/utils.test.ts index 40e3cba..99f6b07 100644 --- a/actions/utils.test.ts +++ b/actions/utils.test.ts @@ -44,7 +44,7 @@ describe(`Actions Utils`, () => { expect(output).toBe(true) }) - test(`getCommitHashFromRef uses git CLI to return the latest tree hash of the root of the repo`, async () => { + test(`getCommitHashFromRef uses git CLI to return the latest commit hash of the repo`, async () => { mockedExec.mockResolvedValue(0) const output = await utils.getCommitHashFromRef('HEAD') expect(mockedExec).toHaveBeenCalledWith('git rev-parse', ['HEAD'], {