diff options
author | Geert-Jan Zwiers <geertjanzwiers@protonmail.com> | 2023-01-13 22:39:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-13 22:39:19 +0100 |
commit | 052bcc62bba6f5b25eb016a5c8ebf0716ba5a0dc (patch) | |
tree | a33da4af3c41a48f29c4c3d6714cc36b08b3a080 /cli/tools/vendor/test.rs | |
parent | 225114166aa7426d4b93fa13635559029c5ba65d (diff) |
refactor(cli/tools): reduce cloning (#17309)
Diffstat (limited to 'cli/tools/vendor/test.rs')
-rw-r--r-- | cli/tools/vendor/test.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/vendor/test.rs b/cli/tools/vendor/test.rs index 7171b8463..4ac2bac86 100644 --- a/cli/tools/vendor/test.rs +++ b/cli/tools/vendor/test.rs @@ -225,7 +225,7 @@ impl VendorTestBuilder { let graph = build_test_graph( roots, self.original_import_map.clone(), - loader.clone(), + loader, &*analyzer, ) .await; |