From 9b44e27dfed67b06c8ea5d897803c391563c73c3 Mon Sep 17 00:00:00 2001 From: altair823 Date: Wed, 27 May 2026 23:58:10 +0000 Subject: [PATCH] test(app): update schema_report assertion for streaming_ask=true (Bug #9 follow-up) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit schema_report_reflects_freshly_ingested_kb 가 `!streaming_ask` 를 assert 했으나 Bug #9 fix (760eee8) 로 streaming_ask 가 true 로 정정됨. assertion 을 반전. Co-Authored-By: Claude Opus 4.7 (1M context) --- crates/kebab-app/tests/schema_report.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/kebab-app/tests/schema_report.rs b/crates/kebab-app/tests/schema_report.rs index 253646c..7ceb7c4 100644 --- a/crates/kebab-app/tests/schema_report.rs +++ b/crates/kebab-app/tests/schema_report.rs @@ -57,7 +57,7 @@ fn schema_report_reflects_freshly_ingested_kb() { schema.wire.schemas ); assert!(schema.capabilities.json_mode); - assert!(!schema.capabilities.streaming_ask); + assert!(schema.capabilities.streaming_ask); // Bug #9: streaming_ask is now true assert!( schema.capabilities.mcp_server, "mcp_server should be true after fb-30",