fix: Update test calls for &str API change

This commit is contained in:
Robert Hensing 2025-09-30 20:18:59 +02:00
parent eadd2827a5
commit 7cc9cfbb2b

View file

@ -348,7 +348,7 @@ mod tests {
let store = Store::open("auto").unwrap();
let es = EvalState::new(store).unwrap();
let v = es
.eval_from_string("[ ]".to_string(), "<test>".to_string())
.eval_from_string("[ ]", "<test>")
.unwrap();
es.force(&v).unwrap();
let t = es.value_type(&v).unwrap();