mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-21 00:59:03 +01:00
auto-fixed prefer-const violation
This commit is contained in:
@@ -124,7 +124,7 @@ suite.skip('Notebook Document', function () {
|
||||
|
||||
const p = utils.asPromise(vscode.workspace.onDidOpenNotebookDocument).then(notebook => {
|
||||
for (let i = 0; i < notebook.cellCount; i++) {
|
||||
let cell = notebook.cellAt(i);
|
||||
const cell = notebook.cellAt(i);
|
||||
|
||||
const doc = vscode.workspace.textDocuments.find(doc => doc.uri.toString() === cell.document.uri.toString());
|
||||
assert.ok(doc);
|
||||
|
||||
Reference in New Issue
Block a user