aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide/src/hover.rs
diff options
context:
space:
mode:
authorvsrs <[email protected]>2020-06-03 13:13:26 +0100
committervsrs <[email protected]>2020-06-05 13:00:30 +0100
commit5d0c1aa1625a17723209e537590dc7fc7f181df1 (patch)
tree1213710b519126e640e543ab5a8d456634e15772 /crates/ra_ide/src/hover.rs
parentb147e6eb95b8bbc8cd9a56f9a9a629b8671bdc0e (diff)
Rebase on the latest master.
Diffstat (limited to 'crates/ra_ide/src/hover.rs')
-rw-r--r--crates/ra_ide/src/hover.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/ra_ide/src/hover.rs b/crates/ra_ide/src/hover.rs
index 2b9095a82..2fbe0ba1f 100644
--- a/crates/ra_ide/src/hover.rs
+++ b/crates/ra_ide/src/hover.rs
@@ -1127,7 +1127,7 @@ fn func(foo: i32) { if true { <|>foo; }; }
1127 } 1127 }
1128 1128
1129 #[test] 1129 #[test]
1130 fn test_hover_trait_hash_impl_action() { 1130 fn test_hover_trait_has_impl_action() {
1131 let (_, actions) = check_hover_result( 1131 let (_, actions) = check_hover_result(
1132 " 1132 "
1133 //- /lib.rs 1133 //- /lib.rs
@@ -1139,7 +1139,7 @@ fn func(foo: i32) { if true { <|>foo; }; }
1139 } 1139 }
1140 1140
1141 #[test] 1141 #[test]
1142 fn test_hover_struct_hash_impl_action() { 1142 fn test_hover_struct_has_impl_action() {
1143 let (_, actions) = check_hover_result( 1143 let (_, actions) = check_hover_result(
1144 " 1144 "
1145 //- /lib.rs 1145 //- /lib.rs
@@ -1151,7 +1151,7 @@ fn func(foo: i32) { if true { <|>foo; }; }
1151 } 1151 }
1152 1152
1153 #[test] 1153 #[test]
1154 fn test_hover_union_hash_impl_action() { 1154 fn test_hover_union_has_impl_action() {
1155 let (_, actions) = check_hover_result( 1155 let (_, actions) = check_hover_result(
1156 " 1156 "
1157 //- /lib.rs 1157 //- /lib.rs