From 76fe0fef497d46493e1040fc62d187298117a617 Mon Sep 17 00:00:00 2001 From: Chris LaFreniere <40371649+chlafreniere@users.noreply.github.com> Date: Wed, 3 Apr 2019 10:44:01 -0700 Subject: [PATCH] Fix broken test merge conflicts (#4823) --- extensions/integration-tests/src/notebook.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/integration-tests/src/notebook.test.ts b/extensions/integration-tests/src/notebook.test.ts index 371407caa5..a278a50b40 100644 --- a/extensions/integration-tests/src/notebook.test.ts +++ b/extensions/integration-tests/src/notebook.test.ts @@ -51,7 +51,7 @@ if (context.RunTest) { }); test('Sql NB multiple cells test', async function () { - let notebook = await openNotebook(sqlNotebookMultipleCellsContent, sqlKernelMetadata, this.test.title); + let notebook = await openNotebook(sqlNotebookMultipleCellsContent, sqlKernelMetadata, this.test.title, true); const expectedOutput0 = '(1 row affected)'; for (let i = 0; i < 3; i++) { let cellOutputs = notebook.document.cells[i].contents.outputs;