Skip to content

Commit

Permalink
fix: var name
Browse files Browse the repository at this point in the history
  • Loading branch information
vishwarajanand committed May 18, 2024
1 parent d886548 commit a9419a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/transfer-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ describe('Transfer Manager', () => {
const filesOrFolder = [folder, path.join(folder, file)];
const expectedFilePath = path.join(prefix, folder, file);
const expectedDir = path.join(prefix, folder);
const mkdirSyncSpy = sandbox.spy(fsp, 'mkdir');
const mkdirSpy = sandbox.spy(fsp, 'mkdir');
const download = (optionsOrCb?: DownloadOptions | DownloadCallback) => {
if (typeof optionsOrCb === 'function') {
optionsOrCb(null, Buffer.alloc(0));
Expand All @@ -300,7 +300,7 @@ describe('Transfer Manager', () => {
prefix: prefix,
});
assert.strictEqual(
mkdirSyncSpy.calledOnceWith(expectedDir, {
mkdirSpy.calledOnceWith(expectedDir, {
recursive: true,
}),
true
Expand Down

0 comments on commit a9419a5

Please sign in to comment.