From fdb7d62d0c40e2d2cdeb5cc11306546e80688ae9 Mon Sep 17 00:00:00 2001 From: Nathan Date: Wed, 5 Feb 2025 17:04:49 +0800 Subject: [PATCH] chore: print test image url --- libs/appflowy-ai-client/tests/chat_test/completion_test.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/appflowy-ai-client/tests/chat_test/completion_test.rs b/libs/appflowy-ai-client/tests/chat_test/completion_test.rs index d07bf182..3f216b34 100644 --- a/libs/appflowy-ai-client/tests/chat_test/completion_test.rs +++ b/libs/appflowy-ai-client/tests/chat_test/completion_test.rs @@ -27,7 +27,8 @@ async fn completion_image_test() { .await .unwrap(); let text = collect_stream_text(stream).await; - assert!(text.contains("http://localhost:8000")); + println!("{}", text); + assert!(text.contains("http://localhost")); } #[tokio::test]