Updated variable names

This commit is contained in:
Sankalp Kotewar
2022-08-08 04:48:36 +00:00
parent 23cfbb3484
commit f9d38b0015
3 changed files with 12 additions and 12 deletions

View File

@@ -8,7 +8,7 @@ import {
const useAzureSdk = true
const downloadConcurrency = 8
const timeoutInMs = 30000
const abortTimeInMs = 3600000
const segmentTimeoutInMs = 3600000
const uploadConcurrency = 4
const uploadChunkSize = 32 * 1024 * 1024
@@ -19,7 +19,7 @@ test('getDownloadOptions sets defaults', async () => {
useAzureSdk,
downloadConcurrency,
timeoutInMs,
abortTimeInMs
segmentTimeoutInMs
})
})
@@ -28,7 +28,7 @@ test('getDownloadOptions overrides all settings', async () => {
useAzureSdk: false,
downloadConcurrency: 14,
timeoutInMs: 20000,
abortTimeInMs: 3600000
segmentTimeoutInMs: 3600000
}
const actualOptions = getDownloadOptions(expectedOptions)