1
0
mirror of https://gitea.com/actions/download-artifact.git synced 2026-02-02 20:34:29 +07:00

Fix linting issues

This commit is contained in:
Daniel Kennedy
2026-01-30 15:15:13 -05:00
parent f0a2a2d898
commit bcacd8b0f6

View File

@@ -251,7 +251,7 @@ describe('download', () => {
.mockImplementation(() => Promise.resolve({digestMismatch: true})) .mockImplementation(() => Promise.resolve({digestMismatch: true}))
await expect(run()).rejects.toThrow( await expect(run()).rejects.toThrow(
"Digest validation failed for artifact(s): corrupted-artifact" 'Digest validation failed for artifact(s): corrupted-artifact'
) )
}) })