Add insert-final-newline config option (#8157)

Co-authored-by: Xalfer <64538944+Xalfer@users.noreply.github.com>
This commit is contained in:
Em Zhan 2023-09-11 19:06:25 -05:00 committed by GitHub
parent ef23847957
commit 7090555dab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 174 additions and 35 deletions

View file

@ -350,7 +350,7 @@ pub fn assert_file_has_content(file: &mut File, content: &str) -> anyhow::Result
let mut file_content = String::new();
file.read_to_string(&mut file_content)?;
assert_eq!(content, file_content);
assert_eq!(file_content, content);
Ok(())
}