Have same connection logic for all nb int tests (#13844)

This commit is contained in:
Chris LaFreniere
2020-12-17 15:38:41 -08:00
committed by GitHub
parent 9aaa78e020
commit 2d6074706a
2 changed files with 3 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ suite('Notebook integration test suite', function () {
});
test('Sql NB test @UNSTABLE@', async function () {
let notebook = await openNotebook(sqlNotebookContent, sqlKernelMetadata, this.test.title + this.invocationCount++, true);
let notebook = await openNotebook(sqlNotebookContent, sqlKernelMetadata, this.test.title + this.invocationCount++);
await runCell(notebook);
const expectedOutput0 = '(1 row affected)';
let cellOutputs = notebook.document.cells[0].contents.outputs;