summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-11-08 23:42:34 +0100
committerLaurenz <laurmaedje@gmail.com>2023-11-08 23:42:45 +0100
commit7f0fcda3764e261612021e5ec66d536bb5ee98ef (patch)
tree496449a9a3111b2108a068087c56281b4d47e519 /tests
parentd7fea7077ebe4df44edff32b2b3a6e4a00775974 (diff)
Move some things out of `util`
Diffstat (limited to 'tests')
-rw-r--r--tests/src/tests.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/tests.rs b/tests/src/tests.rs
index 0271839c..3b33a729 100644
--- a/tests/src/tests.rs
+++ b/tests/src/tests.rs
@@ -23,10 +23,10 @@ use walkdir::WalkDir;
use typst::diag::{bail, FileError, FileResult, Severity, StrResult};
use typst::doc::{Document, Frame, FrameItem, Meta};
use typst::eval::{
- eco_format, func, Bytes, Datetime, Library, NoneValue, Repr, Tracer, Value,
+ eco_format, func, Bytes, Datetime, Library, NoneValue, Repr, Smart, Tracer, Value,
};
use typst::font::{Font, FontBook};
-use typst::geom::{Abs, Color, Smart, Transform};
+use typst::geom::{Abs, Color, Transform};
use typst::syntax::{FileId, PackageVersion, Source, SyntaxNode, VirtualPath};
use typst::{World, WorldExt};
use typst_library::layout::{Margin, PageElem};