Fix typo in function name (#590)

This commit is contained in:
Minh Nguyen
2021-05-03 18:09:44 +03:00
committed by GitHub
parent fbdf27470c
commit d972090333
7 changed files with 18 additions and 18 deletions

View File

@@ -49,7 +49,7 @@ test('save with large cache outputs should fail', async () => {
const cacheSize = 6 * 1024 * 1024 * 1024 //~6GB, over the 5GB limit
jest
.spyOn(cacheUtils, 'getArchiveFileSizeIsBytes')
.spyOn(cacheUtils, 'getArchiveFileSizeInBytes')
.mockReturnValueOnce(cacheSize)
const compression = CompressionMethod.Gzip
const getCompressionMock = jest