Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide/src/hover/tests.rs')
-rw-r--r--crates/ide/src/hover/tests.rs48
1 files changed, 24 insertions, 24 deletions
diff --git a/crates/ide/src/hover/tests.rs b/crates/ide/src/hover/tests.rs
index 2ec7802394..df27f935c8 100644
--- a/crates/ide/src/hover/tests.rs
+++ b/crates/ide/src/hover/tests.rs
@@ -4102,16 +4102,16 @@ identity!{
}
"#,
expect![[r#"
- *Copy*
+ *Copy*
- ```rust
- test
- ```
+ ```rust
+ test
+ ```
- ```rust
- pub macro Copy
- ```
- "#]],
+ ```rust
+ macro Copy
+ ```
+ "#]],
);
}
@@ -4126,16 +4126,16 @@ pub macro Copy {}
struct Foo;
"#,
expect![[r#"
- *Copy*
+ *Copy*
- ```rust
- test
- ```
+ ```rust
+ test
+ ```
- ```rust
- pub macro Copy
- ```
- "#]],
+ ```rust
+ macro Copy
+ ```
+ "#]],
);
check(
r#"
@@ -4148,16 +4148,16 @@ mod foo {
struct Foo;
"#,
expect![[r#"
- *Copy*
+ *Copy*
- ```rust
- test::foo
- ```
+ ```rust
+ test::foo
+ ```
- ```rust
- pub macro Copy
- ```
- "#]],
+ ```rust
+ macro Copy
+ ```
+ "#]],
);
}