aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crates/ra_syntax/src/ast.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/crates/ra_syntax/src/ast.rs b/crates/ra_syntax/src/ast.rs
index 50441e75b..9cc7930f7 100644
--- a/crates/ra_syntax/src/ast.rs
+++ b/crates/ra_syntax/src/ast.rs
@@ -217,10 +217,7 @@ fn test_doc_comment_multi_line_block_strips_suffix() {
217#[test] 217#[test]
218fn test_comments_preserve_trailing_whitespace() { 218fn test_comments_preserve_trailing_whitespace() {
219 let file = SourceFile::parse( 219 let file = SourceFile::parse(
220 r#" 220 "\n/// Representation of a Realm. \n/// In the specification these are called Realm Records.\nstruct Realm {}",
221/// Representation of a Realm.
222/// In the specification these are called Realm Records.
223struct Realm {}"#,
224 ) 221 )
225 .ok() 222 .ok()
226 .unwrap(); 223 .unwrap();