Skip to content

Commit

Permalink
fix(tests): incorrect comparing (#4839)
Browse files Browse the repository at this point in the history
  • Loading branch information
fannheyward authored Feb 21, 2024
1 parent 45f8a11 commit 610f5a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/__tests__/client/server/dynamicServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ connection.onDocumentSymbol(() => {
})

connection.onExecuteCommand(param => {
if (param.command = 'test_command') {
if (param.command === 'test_command') {
return {success: true}
}
})
Expand Down

0 comments on commit 610f5a4

Please sign in to comment.