From d6192ce8fd053e5ba670b8d954bd8d8f5f040941 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Fri, 24 Feb 2023 20:23:51 -0500 Subject: fix: regression remapping remote specifier to local file (#17935) Tests added to deno_graph, which were previously not there. Closes #17932 --- cli/lsp/completions.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cli/lsp') 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, -- cgit v1.2.3