From 160e4161f82a0c9af93eaf6faedf77a213eb8d59 Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Tue, 5 May 2026 09:17:36 -0400 Subject: [PATCH] Fix billing scenario CI expectations --- lib/crates/fabro-server/tests/it/scenario/usage.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/crates/fabro-server/tests/it/scenario/usage.rs b/lib/crates/fabro-server/tests/it/scenario/usage.rs index 5f5f250ef..264124bcf 100644 --- a/lib/crates/fabro-server/tests/it/scenario/usage.rs +++ b/lib/crates/fabro-server/tests/it/scenario/usage.rs @@ -67,7 +67,7 @@ async fn run_billing_includes_completed_non_llm_stages() { assert_eq!(status, "succeeded"); let billing = run_billing(&app, &run_id).await; - assert_non_llm_billing(&billing, &["exit", "start"]); + assert_non_llm_billing(&billing, &["start"]); } #[tokio::test(flavor = "multi_thread", worker_threads = 2)] @@ -81,7 +81,7 @@ async fn run_billing_includes_completed_command_stages() { assert_eq!(status, "succeeded"); let billing = run_billing(&app, &run_id).await; - assert_non_llm_billing(&billing, &["echo_task", "exit", "start"]); + assert_non_llm_billing(&billing, &["echo_task", "start"]); } async fn run_billing(app: &axum::Router, run_id: &str) -> serde_json::Value {