diff options
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. } |
