diff options
| author | Mason Reed <mason@vector35.com> | 2025-05-08 21:01:42 -0400 |
|---|---|---|
| committer | Mason Reed <35282038+emesare@users.noreply.github.com> | 2025-05-12 17:45:24 -0400 |
| commit | 38fa66115c00ead8dcc38ec5c5451d3ce4444ab8 (patch) | |
| tree | dd398b7bbb99c0eefcfdf559f8efcfcd532c1d25 /rust/tests | |
| parent | c2d90f2e5a010546d0e1f1deeb1a6d8531ea4d4f (diff) | |
[Rust] Misc cleanup
Diffstat (limited to 'rust/tests')
| -rw-r--r-- | rust/tests/line_formatter.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rust/tests/line_formatter.rs b/rust/tests/line_formatter.rs index 72968238..eeb5f0e1 100644 --- a/rust/tests/line_formatter.rs +++ b/rust/tests/line_formatter.rs @@ -20,5 +20,6 @@ fn test_custom_line_formatter() { let _session = Session::new().expect("Failed to initialize session"); let out_dir = env!("OUT_DIR").parse::<PathBuf>().unwrap(); let line_formatter = register_line_formatter("my_line_formatter", MyLineFormatter {}); - assert_eq!(line_formatter.name().as_str(), "my_line_formatter"); + assert_eq!(line_formatter.name(), "my_line_formatter".into()); + // TODO: Finish this test. } |
