diff --git a/crates/rust-analyzer/src/main_loop/handlers.rs b/crates/rust-analyzer/src/main_loop/handlers.rs index 4ff8fa69e92..be6a0aece93 100644 --- a/crates/rust-analyzer/src/main_loop/handlers.rs +++ b/crates/rust-analyzer/src/main_loop/handlers.rs @@ -802,11 +802,11 @@ pub fn handle_code_lens( for runnable in world.analysis().runnables(file_id)? { let (run_title, debugee) = match &runnable.kind { RunnableKind::Test { .. } | RunnableKind::TestMod { .. } => { - ("▶️\u{fe0e}Run Test", true) + ("▶\u{fe0e} Run Test", true) } RunnableKind::DocTest { .. } => { // cargo does not support -no-run for doctests - ("▶️\u{fe0e}Run Doctest", false) + ("▶\u{fe0e} Run Doctest", false) } RunnableKind::Bench { .. } => { // Nothing wrong with bench debugging