fix a few lint warnings (#17286)

This commit is contained in:
Alan Ren
2021-10-06 14:12:49 -07:00
committed by GitHub
parent 42b89095f2
commit 5d56e6525b
3 changed files with 4 additions and 5 deletions

View File

@@ -220,7 +220,7 @@ describe('deploy service', function (): void {
appSettingType: AppSettingType.AzureFunction,
appSettingFile: filePath,
envVariableName: 'SQLConnectionString',
}
};
const deployService = new DeployService(testContext.outputChannel);
let connection = new azdata.connection.ConnectionProfile();
sandbox.stub(azdata.connection, 'getConnection').returns(Promise.resolve(connection));
@@ -229,7 +229,6 @@ describe('deploy service', function (): void {
await deployService.updateAppSettings(appInteg, deployProfile);
let newContent = JSON.parse(fse.readFileSync(filePath, 'utf8'));
should(newContent).deepEqual(expected);
});
it('Should clean a list of docker images successfully', async function (): Promise<void> {