diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-04-12 14:54:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-12 14:54:28 -0400 |
commit | 9c255b2843b3446c7ac6592eb8e318972eb5f1f8 (patch) | |
tree | 02b02d4a7ce3077435c0add9774d053003110f15 /cli/lsp/testing/execution.rs | |
parent | 66a22d231af0681450b84d1bdbc0b585f0a728ee (diff) |
refactor: `ProcState::build` -> `ProcState::from_flags` (#18672)
Diffstat (limited to 'cli/lsp/testing/execution.rs')
-rw-r--r-- | cli/lsp/testing/execution.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/lsp/testing/execution.rs b/cli/lsp/testing/execution.rs index 44a0729de..466c0d942 100644 --- a/cli/lsp/testing/execution.rs +++ b/cli/lsp/testing/execution.rs @@ -259,7 +259,7 @@ impl TestRun { let args = self.get_args(); lsp_log!("Executing test run with arguments: {}", args.join(" ")); let flags = flags_from_vec(args.into_iter().map(String::from).collect())?; - let ps = proc_state::ProcState::build(flags).await?; + let ps = proc_state::ProcState::from_flags(flags).await?; // Various test files should not share the same permissions in terms of // `PermissionsContainer` - otherwise granting/revoking permissions in one // file would have impact on other files, which is undesirable. |