1
0
Fork 0
mirror of https://github.com/actions/toolkit synced 2025-05-09 00:22:56 +00:00

actually use md5 not sha256

This commit is contained in:
Rob Herley 2022-05-05 10:32:09 -04:00
parent a3c696e88e
commit 35e5aac523
No known key found for this signature in database
GPG key ID: D1602042C3543B06
2 changed files with 2 additions and 2 deletions

View file

@ -234,6 +234,6 @@ describe('Utils', () => {
const digest = await utils.digestForStream(stream)
expect(digest.crc64).toBe('bSzITYnW/P8=')
expect(digest.md5).toBe('Xiv1fT9AxLbfadrxk2y3ZvgyN0tPwCWafL/wbi9w8mk=')
expect(digest.md5).toBe('gKdR/eV3AoZAxBkADjPrpg==')
})
})