Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonlyu123 committed Nov 24, 2023
1 parent eea8096 commit dc2fa97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/language-server/test/plugins/PluginHost.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ describe('PluginHost', () => {
await pluginHost.getDiagnostics(textDocument);

sinon.assert.calledOnce(plugin.getDiagnostics);
sinon.assert.calledWithExactly(plugin.getDiagnostics, document);
sinon.assert.calledWithExactly(plugin.getDiagnostics, document, undefined);
});

it('executes doHover on plugins', async () => {
Expand Down

0 comments on commit dc2fa97

Please sign in to comment.