mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-26 01:25:38 -05:00
Fix all await-promise tslint errors (#7530)
* Fix all await-promise tslint errors * Remove unnecessary await
This commit is contained in:
@@ -477,7 +477,7 @@ suite('ConnectionStore', () => {
|
||||
for (let i = 0; i < 5; i++) {
|
||||
const cred = Object.assign({}, defaultNamedProfile, { serverName: defaultNamedProfile.serverName + i });
|
||||
const connectionProfile = new ConnectionProfile(capabilitiesService, cred);
|
||||
await connectionStore.removeRecentConnection(connectionProfile);
|
||||
connectionStore.removeRecentConnection(connectionProfile);
|
||||
const current = connectionStore.getRecentlyUsedConnections();
|
||||
assert.equal(current.length, 4 - i);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user