diff options
| author | Geert-Jan Zwiers <geertjanzwiers@protonmail.com> | 2023-03-04 13:05:07 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-04 08:05:07 -0400 |
| commit | 58ec963bf190cd33cdbc3218be3b8c61189bdcfd (patch) | |
| tree | ffaa21e1707bb79e5822783bab941f5bbaa006fe /cli/tools | |
| parent | 399a22db887db60f90ad1182172dc218e0e1d5ec (diff) | |
refactor: simplify to string calls (#18011)
Diffstat (limited to 'cli/tools')
| -rw-r--r-- | cli/tools/test.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/test.rs b/cli/tools/test.rs index d0f3013b3..ae831b95b 100644 --- a/cli/tools/test.rs +++ b/cli/tools/test.rs @@ -832,7 +832,7 @@ fn extract_files_from_source_comments( media_type: MediaType, ) -> Result<Vec<File>, AnyError> { let parsed_source = deno_ast::parse_module(deno_ast::ParseParams { - specifier: specifier.as_str().to_string(), + specifier: specifier.to_string(), text_info: deno_ast::SourceTextInfo::new(source), media_type, capture_tokens: false, |
