Skip to content

Commit 7fda26d

Browse files
committed
cargo fmt
1 parent 29b3119 commit 7fda26d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/parse/guess_language.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,10 @@ mod tests {
662662
#[test]
663663
fn test_guess_by_xml_header() {
664664
let path = Path::new("foo");
665-
assert_eq!(guess(path, "<?xml version=\"1.0\" encoding=\"utf-8\"?>", &[]), Some(Xml));
665+
assert_eq!(
666+
guess(path, "<?xml version=\"1.0\" encoding=\"utf-8\"?>", &[]),
667+
Some(Xml)
668+
);
666669
}
667670

668671
#[test]

0 commit comments

Comments
 (0)