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-30 09:50:28 -07:00
committed by Max Brunsfeld
co-authored by Nathan Sobo
parent 164cafa57d
commit 694ab0d69d
+2 -1
View File
@@ -611,7 +611,8 @@ mod tests {
[
("out".to_string(), Some("fn.name")),
("\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"))
]
);
}