Skip to content

Commit 80975b8

Browse files
committed
fix clippy
1 parent e33e176 commit 80975b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/ide/src/runnables.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ pub enum TestId {
4646
impl AsRef<str> for TestId {
4747
fn as_ref(&self) -> &str {
4848
match self {
49-
Self::Name(n) => &n,
50-
Self::Path(p) => &p,
49+
Self::Name(n) => n,
50+
Self::Path(p) => p,
5151
}
5252
}
5353
}

0 commit comments

Comments
 (0)