From bd01da6ecafd987fda343a181dd7fe95d81068ac Mon Sep 17 00:00:00 2001 From: James Yu Date: Sat, 9 Nov 2024 13:56:37 +0800 Subject: [PATCH] Fix a bibtex parsing unit test --- test/units/11_parser_tex.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/units/11_parser_tex.test.ts b/test/units/11_parser_tex.test.ts index 6ef082724..0532dbd06 100644 --- a/test/units/11_parser_tex.test.ts +++ b/test/units/11_parser_tex.test.ts @@ -41,7 +41,7 @@ describe(path.basename(__filename).split('.')[0] + ':', () => { const ast = await parser.bib(vscode.Uri.file('/main.bib'), '@article{key, author = "author",') assert.strictEqual(ast, undefined) - assert.hasLog('Error when parsing bib file.') + assert.hasLog('Error when parsing bib file') }) })