diff options
Diffstat (limited to 'tests/integration/lsp_tests.rs')
-rw-r--r-- | tests/integration/lsp_tests.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/integration/lsp_tests.rs b/tests/integration/lsp_tests.rs index 9ddaebc59..852f56e9b 100644 --- a/tests/integration/lsp_tests.rs +++ b/tests/integration/lsp_tests.rs @@ -4698,19 +4698,19 @@ fn test_lsp_code_actions_ordering() { } let res = serde_json::to_value(actions).unwrap(); - // Ensure ordering is "deno-ts" -> "deno" -> "deno-lint". + // Ensure ordering is "deno" -> "deno-ts" -> "deno-lint". assert_eq!( res, json!([ { - "title": "Add async modifier to containing function", - "source": "deno-ts", - }, - { "title": "Cache \"https://deno.land/x/a/mod.ts\" and its dependencies.", "source": "deno", }, { + "title": "Add async modifier to containing function", + "source": "deno-ts", + }, + { "title": "Disable prefer-const for this line", "source": "deno-lint", }, |