diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-02-24 20:23:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-25 01:23:51 +0000 |
commit | d6192ce8fd053e5ba670b8d954bd8d8f5f040941 (patch) | |
tree | 896db54e71c481858224999b43d5c6212695ae09 /cli/lsp/completions.rs | |
parent | 033b70af19300a4e34dcf19ab0031245bfc19625 (diff) |
fix: regression remapping remote specifier to local file (#17935)
Tests added to deno_graph, which were previously not there.
Closes #17932
Diffstat (limited to 'cli/lsp/completions.rs')
-rw-r--r-- | cli/lsp/completions.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/lsp/completions.rs b/cli/lsp/completions.rs index b89aec6c9..0c27500e2 100644 --- a/cli/lsp/completions.rs +++ b/cli/lsp/completions.rs @@ -681,6 +681,7 @@ mod tests { &text_info, &Range { specifier: ModuleSpecifier::parse("https://deno.land").unwrap(), + text: "".to_string(), start: deno_graph::Position { line: 0, character: 0, @@ -705,6 +706,7 @@ mod tests { &text_info, &Range { specifier: ModuleSpecifier::parse("https://deno.land").unwrap(), + text: "".to_string(), start: deno_graph::Position { line: 0, character: 0, |