diff --git a/tests/memory_comparison.rs b/tests/memory_comparison.rs index 7009f86bc..52fc712d6 100644 --- a/tests/memory_comparison.rs +++ b/tests/memory_comparison.rs @@ -1,3 +1,4 @@ +#![rustfmt::skip] //! Head-to-head comparison: SQLite vs Markdown memory backends //! //! Run with: cargo test --test memory_comparison -- --nocapture @@ -226,7 +227,11 @@ async fn compare_persistence() { let sq_entry = sq2.get("persist_test").await.unwrap(); let md_entry = md2.get("persist_test").await.unwrap(); - let sq_status = if sq_entry.is_some() { "✅ Survived" } else { "❌ Lost" }; +let sq_status = if sq_entry.is_some() { + "✅ Survived" + } else { + "❌ Lost" + }; let md_status = if md_entry.is_some() { "✅ Survived" } else { "❌ Lost" }; println!();