Fix typo in function name (#590)

This commit is contained in:
Minh Nguyen
2021-05-03 11:09:44 -04:00
committed by GitHub
parent fbdf27470c
commit d972090333
7 changed files with 18 additions and 18 deletions
+2 -2
View File
@@ -2,10 +2,10 @@ import {promises as fs} from 'fs'
import * as path from 'path'
import * as cacheUtils from '../src/internal/cacheUtils'
test('getArchiveFileSizeIsBytes returns file size', () => {
test('getArchiveFileSizeInBytes returns file size', () => {
const filePath = path.join(__dirname, '__fixtures__', 'helloWorld.txt')
const size = cacheUtils.getArchiveFileSizeIsBytes(filePath)
const size = cacheUtils.getArchiveFileSizeInBytes(filePath)
expect(size).toBe(11)
})