From 0a14651835cf2e3e91245e927055906b4e72e4f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Forment?= Date: Wed, 21 Jan 2026 17:08:26 +0100 Subject: [PATCH] Update tests --- tests/forth/errors.rs | 2 +- tests/forth/harness.rs | 2 +- tests/forth/stack.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/forth/errors.rs b/tests/forth/errors.rs index 60f82af..3b98373 100644 --- a/tests/forth/errors.rs +++ b/tests/forth/errors.rs @@ -56,7 +56,7 @@ fn float_literal() { fn string_with_spaces() { let f = run(r#""hello world" "x" set "x" get"#); match stack_top(&f) { - seq::model::forth::Value::Str(s, _) => assert_eq!(s, "hello world"), + cagire::model::forth::Value::Str(s, _) => assert_eq!(s, "hello world"), other => panic!("expected string, got {:?}", other), } } diff --git a/tests/forth/harness.rs b/tests/forth/harness.rs index 5f053be..4de1c93 100644 --- a/tests/forth/harness.rs +++ b/tests/forth/harness.rs @@ -1,6 +1,6 @@ use rand::rngs::StdRng; use rand::SeedableRng; -use seq::model::forth::{Forth, Rng, StepContext, Value, Variables}; +use cagire::model::forth::{Forth, Rng, StepContext, Value, Variables}; use std::collections::HashMap; use std::sync::{Arc, Mutex}; diff --git a/tests/forth/stack.rs b/tests/forth/stack.rs index f21b396..6dae004 100644 --- a/tests/forth/stack.rs +++ b/tests/forth/stack.rs @@ -1,5 +1,5 @@ use super::harness::*; -use seq::model::forth::Value; +use cagire::model::forth::Value; fn int(n: i64) -> Value { Value::Int(n, None)