diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-05-06 19:21:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-06 19:21:58 -0400 |
commit | 2dcbef2abbf03055d64ee79c5b23318f23a31386 (patch) | |
tree | a43ea29993de06d18c2d93f5517ed64b41c037ea /cli/lsp/testing/execution.rs | |
parent | f698bc70e2f1d4cd58d17544258cf1b19726b66a (diff) |
fix(compile): relative permissions should be retained as relative (#23719)
Closes #23715
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 73916d0c2..ae4b62ea8 100644 --- a/cli/lsp/testing/execution.rs +++ b/cli/lsp/testing/execution.rs @@ -218,7 +218,7 @@ impl TestRun { // `PermissionsContainer` - otherwise granting/revoking permissions in one // file would have impact on other files, which is undesirable. let permissions = - Permissions::from_options(&factory.cli_options().permissions_options())?; + Permissions::from_options(&factory.cli_options().permissions_options()?)?; test::check_specifiers( factory.cli_options(), factory.file_fetcher()?, |