diff options
| author | Sébastien d'Herbais de Thun <sebastien.d.herbais@gmail.com> | 2023-10-17 20:50:36 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-17 20:50:36 +0200 |
| commit | 37a988af83e54c9351eadd2e7f8a1c32441fafb4 (patch) | |
| tree | 49472313db0a35adf4c59bc867793a627597e3a9 /tests/src/tests.rs | |
| parent | 77b84675e569dec3e1c29d17e9033a1d0c26dc23 (diff) | |
Replace `Vec` with `EcoVec`, removed `Box` (#2420)
Diffstat (limited to 'tests/src/tests.rs')
| -rw-r--r-- | tests/src/tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/tests.rs b/tests/src/tests.rs index 41fd00e8..bdbfd397 100644 --- a/tests/src/tests.rs +++ b/tests/src/tests.rs @@ -545,7 +545,7 @@ fn test_part( Ok(document) => (document.pages, tracer.warnings()), Err(errors) => { let mut warnings = tracer.warnings(); - warnings.extend(*errors); + warnings.extend(errors); (vec![], warnings) } }; |
