diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-07-10 22:27:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-11 02:27:22 +0000 |
commit | be9e73d340373350c10bd30ca4f130b753287140 (patch) | |
tree | e73f5221555972cd063b5252c9261c2677ff47ad /cli/tests/integration/lsp_tests.rs | |
parent | 0d8af65621be63a95d57611796a042e5ecf90f85 (diff) |
fix(lsp): remove quotes and period surrounding specifier in uncached messages (#19794)
Diffstat (limited to 'cli/tests/integration/lsp_tests.rs')
-rw-r--r-- | cli/tests/integration/lsp_tests.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cli/tests/integration/lsp_tests.rs b/cli/tests/integration/lsp_tests.rs index eb5885529..22463b58a 100644 --- a/cli/tests/integration/lsp_tests.rs +++ b/cli/tests/integration/lsp_tests.rs @@ -3907,7 +3907,7 @@ fn lsp_code_actions_deno_cache() { "severity": 1, "code": "no-cache", "source": "deno", - "message": "Uncached or missing remote URL: \"https://deno.land/x/a/mod.ts\".", + "message": "Uncached or missing remote URL: https://deno.land/x/a/mod.ts", "data": { "specifier": "https://deno.land/x/a/mod.ts" } }], "version": 1 @@ -3997,7 +3997,7 @@ fn lsp_code_actions_deno_cache_npm() { "severity": 1, "code": "no-cache-npm", "source": "deno", - "message": "Uncached or missing npm package: \"chalk\".", + "message": "Uncached or missing npm package: chalk", "data": { "specifier": "npm:chalk" } }], "version": 1 @@ -4024,7 +4024,7 @@ fn lsp_code_actions_deno_cache_npm() { "severity": 1, "code": "no-cache-npm", "source": "deno", - "message": "Uncached or missing npm package: \"chalk\".", + "message": "Uncached or missing npm package: chalk", "data": { "specifier": "npm:chalk" } }], "only": ["quickfix"] @@ -4044,7 +4044,7 @@ fn lsp_code_actions_deno_cache_npm() { "severity": 1, "code": "no-cache-npm", "source": "deno", - "message": "Uncached or missing npm package: \"chalk\".", + "message": "Uncached or missing npm package: chalk", "data": { "specifier": "npm:chalk" } }], "command": { @@ -6125,7 +6125,7 @@ fn lsp_completions_node_specifier() { "severity": 1, "code": "no-cache-npm", "source": "deno", - "message": "Uncached or missing npm package: \"@types/node\"." + "message": "Uncached or missing npm package: @types/node" } ]) ); |