Use a flat play icon instead of the blue emoji with test code lens

This commit is contained in:
Aaron Loucks 2020-05-19 20:29:49 -04:00
parent efac093093
commit 63ffc17733

View File

@ -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