summaryrefslogtreecommitdiff
path: root/tests/src
diff options
context:
space:
mode:
authorSébastien d'Herbais de Thun <sebastien.d.herbais@gmail.com>2023-10-17 20:50:36 +0200
committerGitHub <noreply@github.com>2023-10-17 20:50:36 +0200
commit37a988af83e54c9351eadd2e7f8a1c32441fafb4 (patch)
tree49472313db0a35adf4c59bc867793a627597e3a9 /tests/src
parent77b84675e569dec3e1c29d17e9033a1d0c26dc23 (diff)
Replace `Vec` with `EcoVec`, removed `Box` (#2420)
Diffstat (limited to 'tests/src')
-rw-r--r--tests/src/tests.rs2
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)
}
};