diff options
Diffstat (limited to 'crates/ra_lsp_server')
-rw-r--r-- | crates/ra_lsp_server/src/main_loop/handlers.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/src/main_loop/handlers.rs b/crates/ra_lsp_server/src/main_loop/handlers.rs index 59c86bbfa..2e598fdcd 100644 --- a/crates/ra_lsp_server/src/main_loop/handlers.rs +++ b/crates/ra_lsp_server/src/main_loop/handlers.rs | |||
@@ -758,7 +758,7 @@ pub fn handle_code_lens( | |||
758 | // Gather runnables | 758 | // Gather runnables |
759 | for runnable in world.analysis().runnables(file_id)? { | 759 | for runnable in world.analysis().runnables(file_id)? { |
760 | let title = match &runnable.kind { | 760 | let title = match &runnable.kind { |
761 | RunnableKind::Test { .. } | RunnableKind::TestMod { .. } => "▶️Run Test", | 761 | RunnableKind::Test { .. } | RunnableKind::TestMod { .. } => "▶️\u{fe0e}Run Test", |
762 | RunnableKind::Bench { .. } => "Run Bench", | 762 | RunnableKind::Bench { .. } => "Run Bench", |
763 | RunnableKind::Bin => "Run", | 763 | RunnableKind::Bin => "Run", |
764 | } | 764 | } |