Fix outdated test assertions after changing wrapping behavior

Co-Authored-By: Nathan Sobo <nathan@zed.dev>
This commit is contained in:
Antonio Scandurra 2021-07-27 18:24:38 +02:00 committed by Max Brunsfeld
parent 164cafa57d
commit 694ab0d69d

View file

@ -611,7 +611,8 @@ mod tests {
[ [
("out".to_string(), Some("fn.name")), ("out".to_string(), Some("fn.name")),
("\n".to_string(), None), ("\n".to_string(), None),
(" fn\n \n".to_string(), Some("mod.body")) (" \nfn ".to_string(), Some("mod.body")),
("i\n".to_string(), Some("fn.name"))
] ]
); );
} }