From d089d6642a9a5fcb1eb0e427425de4017fb10945 Mon Sep 17 00:00:00 2001 From: Alan Ren Date: Tue, 11 Jun 2019 23:17:07 -0700 Subject: [PATCH] fix the typo (#5997) --- extensions/integration-tests/src/objectExplorer.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/extensions/integration-tests/src/objectExplorer.test.ts b/extensions/integration-tests/src/objectExplorer.test.ts index 2d52187bd9..b3c6867e9f 100644 --- a/extensions/integration-tests/src/objectExplorer.test.ts +++ b/extensions/integration-tests/src/objectExplorer.test.ts @@ -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 { + async standaloneContextMenuTest(): Promise { let server = await getStandaloneServer(); let expectedActions: string[] = []; if (process.platform === 'win32') { @@ -168,4 +168,4 @@ class ObjectExplorerTester { await deleteDB(dbName, ownerUri); } } -} \ No newline at end of file +}