docs(readme): fix documentation error (#110)

This commit is contained in:
mumiao
2023-05-24 17:01:17 +08:00
committed by GitHub
parent eeb111b5c5
commit 89b22af5ce
3 changed files with 2 additions and 3 deletions

View File

@ -5,7 +5,6 @@ describe('FlinkSQL Lexer tests', () => {
const sql = 'SELECT * FROM table1';
const tokens = parser.getAllTokens(sql);
test('token counts', () => {
expect(tokens.length - 1).toBe(7);
});