From 194d78af199b0aac2eccfe10e91acdaf7ce4e31b Mon Sep 17 00:00:00 2001 From: Srinath Narayanan Date: Tue, 17 Nov 2020 11:37:48 -0800 Subject: [PATCH] fixed formatting error --- test/notebooks/notebookTestUtils.ts | 5 ++++- test/notebooks/testExplorer/TestExplorer.ts | 4 +++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/test/notebooks/notebookTestUtils.ts b/test/notebooks/notebookTestUtils.ts index a9b58b1b3..ff041b918 100644 --- a/test/notebooks/notebookTestUtils.ts +++ b/test/notebooks/notebookTestUtils.ts @@ -35,7 +35,10 @@ export const getTestExplorerFrame = async (): Promise => { TestExplorerParams.portalRunnerDatabaseAccount, encodeURI(portalRunnerDatabaseAccount) ); - testExplorerUrl.searchParams.append(TestExplorerParams.portalRunnerDatabaseAccountKey, encodeURI(portalRunnerDatabaseAccountKey)); + testExplorerUrl.searchParams.append( + TestExplorerParams.portalRunnerDatabaseAccountKey, + encodeURI(portalRunnerDatabaseAccountKey) + ); testExplorerUrl.searchParams.append(TestExplorerParams.portalRunnerSubscripton, encodeURI(portalRunnerSubscripton)); testExplorerUrl.searchParams.append( TestExplorerParams.portalRunnerResourceGroup, diff --git a/test/notebooks/testExplorer/TestExplorer.ts b/test/notebooks/testExplorer/TestExplorer.ts index 398383ac1..ac1ad0373 100644 --- a/test/notebooks/testExplorer/TestExplorer.ts +++ b/test/notebooks/testExplorer/TestExplorer.ts @@ -80,7 +80,9 @@ const initTestExplorer = async (): Promise => { const portalRunnerDatabaseAccount = decodeURIComponent( urlSearchParams.get(TestExplorerParams.portalRunnerDatabaseAccount) ); - const portalRunnerDatabaseAccountKey = decodeURIComponent(urlSearchParams.get(TestExplorerParams.portalRunnerDatabaseAccountKey)); + const portalRunnerDatabaseAccountKey = decodeURIComponent( + urlSearchParams.get(TestExplorerParams.portalRunnerDatabaseAccountKey) + ); const portalRunnerSubscripton = decodeURIComponent(urlSearchParams.get(TestExplorerParams.portalRunnerSubscripton)); const portalRunnerResourceGroup = decodeURIComponent( urlSearchParams.get(TestExplorerParams.portalRunnerResourceGroup)