Fix book tests on Windows. (#14173)

* fix tests

* fix reveal active item test

* show error message

* revert trusted book test back to original
This commit is contained in:
Barbara Valdez
2021-02-05 10:45:59 -08:00
committed by GitHub
parent 49fa56369c
commit 3c4ffd2a9c
3 changed files with 9 additions and 11 deletions

View File

@@ -253,7 +253,8 @@ export class BookModel {
);
notebooks.push(markdown);
} else {
this._errorMessage = loc.missingFileError(sections[i].title, root);
this._errorMessage = loc.missingFileError(sections[i].title, book.title);
vscode.window.showErrorMessage(this._errorMessage);
}
}
}