diff --git a/crates/arc-workflows/tests/kilroy_compat.rs b/crates/arc-workflows/tests/attractor_compat.rs similarity index 67% rename from crates/arc-workflows/tests/kilroy_compat.rs rename to crates/arc-workflows/tests/attractor_compat.rs index 6458090b0..fbe7fa066 100644 --- a/crates/arc-workflows/tests/kilroy_compat.rs +++ b/crates/arc-workflows/tests/attractor_compat.rs @@ -2,9 +2,9 @@ use std::path::Path; use arc_workflows::parser::parse; -fn parse_kilroy_dot(filename: &str) -> Result { +fn parse_attractor_dot(filename: &str) -> Result { let path = Path::new(env!("CARGO_MANIFEST_DIR")) - .join("../../test/kilroy") + .join("../../test/attractor") .join(filename); let content = std::fs::read_to_string(&path) .map_err(|e| format!("failed to read {}: {e}", path.display()))?; @@ -12,12 +12,12 @@ fn parse_kilroy_dot(filename: &str) -> Result