Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide/src/syntax_highlighting/tests.rs')
| -rw-r--r-- | crates/ide/src/syntax_highlighting/tests.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crates/ide/src/syntax_highlighting/tests.rs b/crates/ide/src/syntax_highlighting/tests.rs index a8d9530946..dd359326c6 100644 --- a/crates/ide/src/syntax_highlighting/tests.rs +++ b/crates/ide/src/syntax_highlighting/tests.rs @@ -1072,9 +1072,9 @@ fn test_mod_hl_injection() { check_highlighting( r##" //- /foo.rs -//! [foo::Struct] +//! [Struct] //! This is an intra doc injection test for modules -//! [foo::Struct] +//! [Struct] //! This is an intra doc injection test for modules pub struct Struct; @@ -1097,9 +1097,9 @@ mod foo; /// This is an intra doc injection test for modules mod foo; //- /foo.rs -//! [foo::Struct] +//! [Struct] //! This is an intra doc injection test for modules -//! [foo::Struct] +//! [Struct] //! This is an intra doc injection test for modules pub struct Struct; |