chore: print test image url

This commit is contained in:
Nathan 2025-02-05 17:04:49 +08:00
parent fd9424a350
commit fdb7d62d0c
1 changed files with 2 additions and 1 deletions

View File

@ -27,7 +27,8 @@ async fn completion_image_test() {
.await .await
.unwrap(); .unwrap();
let text = collect_stream_text(stream).await; let text = collect_stream_text(stream).await;
assert!(text.contains("http://localhost:8000")); println!("{}", text);
assert!(text.contains("http://localhost"));
} }
#[tokio::test] #[tokio::test]