aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crates/ra_lsp_server/src/main_loop/handlers.rs4
1 files changed, 3 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..0bec57e84 100644
--- a/crates/ra_lsp_server/src/main_loop/handlers.rs
+++ b/crates/ra_lsp_server/src/main_loop/handlers.rs
@@ -618,7 +618,9 @@ 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: _ } => {
622 Some("▶️Run Test")
623 }
622 RunnableKind::Bench { name: _ } => Some("Run Bench"), 624 RunnableKind::Bench { name: _ } => Some("Run Bench"),
623 _ => None, 625 _ => None,
624 }; 626 };