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)