diff options
author | Galilée 'Bill' Enguehard <[email protected]> | 2020-05-23 07:59:51 +0100 |
---|---|---|
committer | Galilée 'Bill' Enguehard <[email protected]> | 2020-05-23 07:59:51 +0100 |
commit | 6197a960dffa4c7e8c2f60168a476e5f39ba50aa (patch) | |
tree | 7a8ca3a6331540f2c8b367018f37d72b69824d5c /crates | |
parent | d688215f25b8da06b825da5942763c0faf2f7454 (diff) |
Fix resolve_proc_macro heavy test
Diffstat (limited to 'crates')
-rw-r--r-- | crates/rust-analyzer/tests/heavy_tests/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/rust-analyzer/tests/heavy_tests/main.rs b/crates/rust-analyzer/tests/heavy_tests/main.rs index 4e94c37e1..738a9a8e3 100644 --- a/crates/rust-analyzer/tests/heavy_tests/main.rs +++ b/crates/rust-analyzer/tests/heavy_tests/main.rs | |||
@@ -774,5 +774,5 @@ pub fn foo(_input: TokenStream) -> TokenStream { | |||
774 | }); | 774 | }); |
775 | 775 | ||
776 | let value = res.get("contents").unwrap().get("value").unwrap().to_string(); | 776 | let value = res.get("contents").unwrap().get("value").unwrap().to_string(); |
777 | assert_eq!(value, r#""```rust\nfoo::Bar\nfn bar()\n```""#) | 777 | assert_eq!(value, r#""foo::Bar\n___\n\n```rust\nfn bar()\n```""#) |
778 | } | 778 | } |