diff --git a/crates/tabby/tests/goldentests_chat.rs b/crates/tabby/tests/goldentests_chat.rs index 1e464a9..ff54c88 100644 --- a/crates/tabby/tests/goldentests_chat.rs +++ b/crates/tabby/tests/goldentests_chat.rs @@ -3,7 +3,6 @@ use std::path::PathBuf; use assert_json_diff::assert_json_include; use lazy_static::lazy_static; use serde::Deserialize; -use serde_json::json; use serde_jsonlines::BufReadExt; use tokio::{ process::Command, @@ -84,7 +83,7 @@ async fn golden_test(body: serde_json::Value, expected: serde_json::Value) { .bytes() .await .unwrap(); - + let lines = bytes.json_lines::(); let mut actual = "".to_owned(); for x in lines {