fix integration test

This commit is contained in:
Johannes Rieken 2021-03-15 09:11:45 +01:00
parent 819cb01e0e
commit 0e05a1f21a
No known key found for this signature in database
GPG key ID: 96634B5AF12F8798

View file

@ -70,7 +70,7 @@ suite('Notebook Editor', function () {
test('Opening a notebook should fire activeNotebook event changed only once', async function () {
const openedEditor = utils.asPromise(vscode.window.onDidChangeActiveNotebookEditor);
const resource = await utils.createRandomFile(undefined, undefined, '.vsctestnb');
const resource = await utils.createRandomFile(undefined, undefined, '.nbdtest');
const editor = await vscode.window.showNotebookDocument(resource);
assert.ok(await openedEditor);
assert.strictEqual(editor.document.uri.toString(), resource.toString());