diff options
| author | PgBiel <9021226+PgBiel@users.noreply.github.com> | 2024-05-10 11:47:02 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-10 14:47:02 +0000 |
| commit | 7905de67bcf3ca9b65c076ca02ec4726ba02d22c (patch) | |
| tree | de9952fe57152796b4524b70b913eb5e6aa67864 /tests/src | |
| parent | be12762d942e978ddf2e0ac5c34125264ab483b7 (diff) | |
Add parameter to select pages to be exported by CLI (#4039)
Diffstat (limited to 'tests/src')
| -rw-r--r-- | tests/src/run.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/run.rs b/tests/src/run.rs index d0d86ea6..47760e16 100644 --- a/tests/src/run.rs +++ b/tests/src/run.rs @@ -176,7 +176,7 @@ impl<'a> Runner<'a> { // Write PDF if requested. if crate::ARGS.pdf() { let pdf_path = format!("{}/pdf/{}.pdf", crate::STORE_PATH, self.test.name); - let pdf = typst_pdf::pdf(document, Smart::Auto, None); + let pdf = typst_pdf::pdf(document, Smart::Auto, None, None); std::fs::write(pdf_path, pdf).unwrap(); } |
