Skip to content

Commit 64afbf8

Browse files
bors[bot]aloucks
andauthored
Merge #4526
4526: Use a flat play icon instead of the blue emoji with test code lens r=kjeremy a=aloucks @lnicola Restores this commit: 55e914a That was effectively wiped out by this code formatting commit: dc217bd 3d44525 Co-authored-by: Aaron Loucks <aloucks@cofront.net>
2 parents ee9cec5 + 63ffc17 commit 64afbf8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/rust-analyzer/src/main_loop/handlers.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -802,11 +802,11 @@ pub fn handle_code_lens(
802802
for runnable in world.analysis().runnables(file_id)? {
803803
let (run_title, debugee) = match &runnable.kind {
804804
RunnableKind::Test { .. } | RunnableKind::TestMod { .. } => {
805-
("▶\u{fe0e}Run Test", true)
805+
("▶\u{fe0e} Run Test", true)
806806
}
807807
RunnableKind::DocTest { .. } => {
808808
// cargo does not support -no-run for doctests
809-
("▶\u{fe0e}Run Doctest", false)
809+
("▶\u{fe0e} Run Doctest", false)
810810
}
811811
RunnableKind::Bench { .. } => {
812812
// Nothing wrong with bench debugging

0 commit comments

Comments
 (0)