summaryrefslogtreecommitdiff
path: root/tests/fuzz
diff options
context:
space:
mode:
authorLaurenz <ritters_werth@outlook.com>2023-12-18 12:18:41 +0100
committerGitHub <noreply@github.com>2023-12-18 12:18:41 +0100
commit22ba6825db3b82e0b0f83ef6052f17289893e385 (patch)
treecf69e7ac0eeb49f13ffb0b81e36461e07cb766ba /tests/fuzz
parent356bdeba18153efd4209657182971e22bdaf4db2 (diff)
Key/Value data from CLI (#2894)
Diffstat (limited to 'tests/fuzz')
-rw-r--r--tests/fuzz/src/compile.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fuzz/src/compile.rs b/tests/fuzz/src/compile.rs
index deb71778..c6345051 100644
--- a/tests/fuzz/src/compile.rs
+++ b/tests/fuzz/src/compile.rs
@@ -24,7 +24,7 @@ impl FuzzWorld {
let font = Font::new(FONT.into(), 0).unwrap();
let book = FontBook::from_fonts([&font]);
Self {
- library: Prehashed::new(Library::build()),
+ library: Prehashed::new(Library::default()),
book: Prehashed::new(book),
font,
source: Source::detached(text),