diff options
Diffstat (limited to 'crates/ra_lsp_server/src')
-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 74554f15c..2a16d37b5 100644 --- a/crates/ra_lsp_server/src/main_loop/handlers.rs +++ b/crates/ra_lsp_server/src/main_loop/handlers.rs | |||
@@ -618,7 +618,7 @@ pub fn handle_code_lens( | |||
618 | 618 | ||
619 | for runnable in world.analysis().runnables(file_id)? { | 619 | for runnable in world.analysis().runnables(file_id)? { |
620 | let title = match &runnable.kind { | 620 | let title = match &runnable.kind { |
621 | RunnableKind::Test { name: _ } | RunnableKind::TestMod { path: _ } => Some("Run Test"), | 621 | RunnableKind::Test { name: _ } | RunnableKind::TestMod { path: _ } => Some("▶️Run Test"), |
622 | RunnableKind::Bench { name: _ } => Some("Run Bench"), | 622 | RunnableKind::Bench { name: _ } => Some("Run Bench"), |
623 | _ => None, | 623 | _ => None, |
624 | }; | 624 | }; |