Skip to content

Commit

Permalink
remove unused vars
Browse files Browse the repository at this point in the history
  • Loading branch information
zemberdotnet committed Oct 18, 2023
1 parent b42b830 commit 29fcb3d
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ import { getRootStorageDirectory, readJsonFromPath } from '../../fileSystem';
import { generateSynchronizationJob } from './util/generateSynchronizationJob';
import { getExpectedRequestHeaders } from '../../../test/util/request';

import { promisify } from 'util';
import { gzip } from 'zlib';

import * as shrinkBatchRawData from '../shrinkBatchRawData';

afterEach(() => {
Expand Down Expand Up @@ -755,11 +752,6 @@ describe('uploadDataChunk', () => {
});
});

const gz = promisify(gzip);
async function gzipData(data: object) {
return await gz(JSON.stringify(data));
}

function createTestContext(
options?: Partial<
Pick<SynchronizeInput, 'source' | 'scope' | 'compressUploads'>
Expand Down

0 comments on commit 29fcb3d

Please sign in to comment.