fix the typo (#5997)

This commit is contained in:
Alan Ren
2019-06-11 23:17:07 -07:00
committed by GitHub
parent 5aa730b5d4
commit d089d6642a

View File

@@ -31,7 +31,7 @@ if (context.RunTest) {
await (new ObjectExplorerTester()).sqlDbContextMenuTest();
});
test('Standalone database context menu test', async function () {
await (new ObjectExplorerTester()).standAloneContextMenuTest();
await (new ObjectExplorerTester()).standaloneContextMenuTest();
});
});
}
@@ -77,7 +77,7 @@ class ObjectExplorerTester {
}
@stressify({ dop: ObjectExplorerTester.ParallelCount })
async standAloneContextMenuTest(): Promise<void> {
async standaloneContextMenuTest(): Promise<void> {
let server = await getStandaloneServer();
let expectedActions: string[] = [];
if (process.platform === 'win32') {
@@ -168,4 +168,4 @@ class ObjectExplorerTester {
await deleteDB(dbName, ownerUri);
}
}
}
}