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/testdata | |
| parent | 0d8af65621be63a95d57611796a042e5ecf90f85 (diff) | |
fix(lsp): remove quotes and period surrounding specifier in uncached messages (#19794)
Diffstat (limited to 'cli/tests/testdata')
| -rw-r--r-- | cli/tests/testdata/lsp/diagnostics_deno_types.json | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cli/tests/testdata/lsp/diagnostics_deno_types.json b/cli/tests/testdata/lsp/diagnostics_deno_types.json index f33945a59..6ab153093 100644 --- a/cli/tests/testdata/lsp/diagnostics_deno_types.json +++ b/cli/tests/testdata/lsp/diagnostics_deno_types.json @@ -15,7 +15,7 @@ "severity": 1, "code": "no-cache", "source": "deno", - "message": "Uncached or missing remote URL: \"https://example.com/a/b.d.ts\".", + "message": "Uncached or missing remote URL: https://example.com/a/b.d.ts", "data": { "specifier": "https://example.com/a/b.d.ts" } @@ -34,7 +34,7 @@ "severity": 1, "code": "no-cache", "source": "deno", - "message": "Uncached or missing remote URL: \"https://example.com/a/e.js\".", + "message": "Uncached or missing remote URL: https://example.com/a/e.js", "data": { "specifier": "https://example.com/a/e.js" } @@ -53,7 +53,7 @@ "severity": 1, "code": "no-cache", "source": "deno", - "message": "Uncached or missing remote URL: \"https://example.com/a/e.d.ts\".", + "message": "Uncached or missing remote URL: https://example.com/a/e.d.ts", "data": { "specifier": "https://example.com/a/e.d.ts" } @@ -72,7 +72,7 @@ "severity": 1, "code": "no-cache", "source": "deno", - "message": "Uncached or missing remote URL: \"https://example.com/a/d.js\".", + "message": "Uncached or missing remote URL: https://example.com/a/d.js", "data": { "specifier": "https://example.com/a/d.js" } @@ -91,7 +91,7 @@ "severity": 1, "code": "no-cache", "source": "deno", - "message": "Uncached or missing remote URL: \"https://example.com/a/d.d.ts\".", + "message": "Uncached or missing remote URL: https://example.com/a/d.d.ts", "data": { "specifier": "https://example.com/a/d.d.ts" } |
