diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2021-11-15 23:25:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-16 10:25:52 +1100 |
commit | cd9193f126c229f3457ada1cf9a05897fdebb77d (patch) | |
tree | 070342089d3a40300f49ba254afd43994ac2a377 /cli/tools/test.rs | |
parent | 243d3ba755265dc2cdc5cd0aaffdf9da57d7a931 (diff) |
fix(cli): short-circuit in prepare_module_load() (#12604)
Diffstat (limited to 'cli/tools/test.rs')
-rw-r--r-- | cli/tools/test.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/tools/test.rs b/cli/tools/test.rs index 33fb2926d..f2b477bf1 100644 --- a/cli/tools/test.rs +++ b/cli/tools/test.rs @@ -732,6 +732,7 @@ async fn check_specifiers( lib.clone(), Permissions::allow_all(), permissions.clone(), + false, ) .await?; } @@ -753,6 +754,7 @@ async fn check_specifiers( lib, Permissions::allow_all(), permissions, + true, ) .await?; |