style: fix Rust formatting in parser.rs test

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Carlos Fernandez
2026-01-23 20:14:26 -08:00
parent fd7271bae2
commit 5c19c7b932

View File

@@ -2737,7 +2737,10 @@ pub mod tests {
#[test]
fn test_mkvlang_sets_mkv_language() {
let (options, _) = parse_args(&["--mkvlang", "eng"]);
assert_eq!(options.mkvlang.unwrap(), "eng".parse::<MkvLangFilter>().unwrap());
assert_eq!(
options.mkvlang.unwrap(),
"eng".parse::<MkvLangFilter>().unwrap()
);
}
#[test]