diff options
Diffstat (limited to 'cli/tools/test/mod.rs')
-rw-r--r-- | cli/tools/test/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tools/test/mod.rs b/cli/tools/test/mod.rs index 390a60762..013d8c084 100644 --- a/cli/tools/test/mod.rs +++ b/cli/tools/test/mod.rs @@ -1277,7 +1277,7 @@ async fn fetch_inline_files( for specifier in specifiers { let fetch_permissions = PermissionsContainer::allow_all(); let file = file_fetcher - .fetch(&specifier, fetch_permissions) + .fetch(&specifier, &fetch_permissions) .await? .into_text_decoded()?; @@ -1688,7 +1688,7 @@ async fn fetch_specifiers_with_test_mode( for (specifier, mode) in &mut specifiers_with_mode { let file = file_fetcher - .fetch(specifier, PermissionsContainer::allow_all()) + .fetch(specifier, &PermissionsContainer::allow_all()) .await?; let (media_type, _) = file.resolve_media_type_and_charset(); |