diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-03-09 15:09:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-09 15:09:03 -0500 |
commit | 47012bd931e785073e943b82dd397386b6ee7ca5 (patch) | |
tree | 82e2695413c72bd124f55a8bc5423c2b79d63f34 /cli/bench/main.rs | |
parent | 2f81e555d88e45a7ec9b5a5bc511fd3ea4d9c75f (diff) |
refactor(tests/lsp): consolidate more into test LspClient and reduce verbosity (#18100)
Diffstat (limited to 'cli/bench/main.rs')
-rw-r--r-- | cli/bench/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/bench/main.rs b/cli/bench/main.rs index 747407945..3bf73e78d 100644 --- a/cli/bench/main.rs +++ b/cli/bench/main.rs @@ -472,7 +472,7 @@ async fn main() -> Result<()> { } if benchmarks.contains(&"lsp") { - let lsp_exec_times = lsp::benchmarks(&deno_exe)?; + let lsp_exec_times = lsp::benchmarks(&deno_exe); new_data.lsp_exec_time = lsp_exec_times; } |