From ec2d4e2f5c8efbc0985f27f2dc924eb388cfb243 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Wed, 16 Jul 2025 16:13:35 -0400 Subject: [Rust] Misc fixes / formatting - Fix cmake clean not cleaning target docs - Fix not prioritizing enterprise remote in collab tests - Some misc formatting - Fix incorrect assert in binary loading --- rust/tests/line_formatter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rust/tests/line_formatter.rs') diff --git a/rust/tests/line_formatter.rs b/rust/tests/line_formatter.rs index eeb5f0e1..7e86d835 100644 --- a/rust/tests/line_formatter.rs +++ b/rust/tests/line_formatter.rs @@ -18,7 +18,7 @@ impl LineFormatter for MyLineFormatter { #[test] fn test_custom_line_formatter() { let _session = Session::new().expect("Failed to initialize session"); - let out_dir = env!("OUT_DIR").parse::().unwrap(); + let _out_dir = env!("OUT_DIR").parse::().unwrap(); let line_formatter = register_line_formatter("my_line_formatter", MyLineFormatter {}); assert_eq!(line_formatter.name(), "my_line_formatter".into()); // TODO: Finish this test. -- cgit v1.3.1