mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-10 18:22:34 -05:00
Notebooks: Fix strict compile errors (#12591)
* strict compile for sqlSessionManager.ts * start clientSession.ts fixes * strict compile for clientSession.ts * strict compile for notebookModel.ts * add display name * clean up code * clean up code * initialize string to empty string * address PR comments * address PR comments * address PR comments * remove errorMessage check
This commit is contained in:
@@ -186,7 +186,8 @@ describe('Jupyter Session', function (): void {
|
||||
|
||||
// When I call changeKernel on the wrapper
|
||||
let kernel = await session.changeKernel({
|
||||
name: 'python'
|
||||
name: 'python',
|
||||
display_name: 'Python'
|
||||
});
|
||||
// Then I expect it to have the ID, and only be called once
|
||||
should(kernel.id).equal('id');
|
||||
|
||||
Reference in New Issue
Block a user