diff options
| author | Mason Reed <mason@vector35.com> | 2025-07-16 16:13:35 -0400 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-07-17 06:20:20 -0400 |
| commit | ec2d4e2f5c8efbc0985f27f2dc924eb388cfb243 (patch) | |
| tree | 06d46de6106385406522380e3bbd1f064490e8ec /rust/tests/line_formatter.rs | |
| parent | 38ff3609c4e2b655c069c0f5c2a7fe1f24d67824 (diff) | |
[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
Diffstat (limited to 'rust/tests/line_formatter.rs')
| -rw-r--r-- | rust/tests/line_formatter.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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::<PathBuf>().unwrap(); + let _out_dir = env!("OUT_DIR").parse::<PathBuf>().unwrap(); let line_formatter = register_line_formatter("my_line_formatter", MyLineFormatter {}); assert_eq!(line_formatter.name(), "my_line_formatter".into()); // TODO: Finish this test. |
