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)