We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
greetings,
order of params in assertEquals(): first: expected, second: actual
line 76 is: assertEquals(lsp(input, span), lsp)
assertEquals(lsp(input, span), lsp)
line 76 should be: assertEquals(lsp, lsp(input, span))
assertEquals(lsp, lsp(input, span))
best wishes & thanks for your work!