From 4188301e79d1d82ec6bc85a69daac71a2480d04b Mon Sep 17 00:00:00 2001 From: Matthew Gordon Date: Sat, 15 Nov 2025 19:56:59 -0400 Subject: [PATCH] Remove debug print --- core/src/editor_buffer/io.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/editor_buffer/io.rs b/core/src/editor_buffer/io.rs index 6060364..431dda4 100644 --- a/core/src/editor_buffer/io.rs +++ b/core/src/editor_buffer/io.rs @@ -111,7 +111,7 @@ mod tests { let temp_dir = tempdir().unwrap(); let tmp_file_path = temp_dir.path().join(r"Les_Trois_Mousquetaires.txt"); assert!(matches!( - dbg!(target.execute(Command::SaveAs(tmp_file_path.clone()))), + target.execute(Command::SaveAs(tmp_file_path.clone())), CommandResponse::Success(_) ));