mirror of
https://github.com/rutgersc/m3u8-rs.git
synced 2025-01-03 19:58:40 +00:00
Formatting.
This commit is contained in:
parent
ff3ffba3bf
commit
92fa631095
1 changed files with 4 additions and 1 deletions
|
@ -998,7 +998,10 @@ mod tests {
|
|||
fn parse_duration_title_with_commas() {
|
||||
assert_eq!(
|
||||
duration_title_tag(b"2.002,title,with,commas\nrest"),
|
||||
Result::Ok(("rest".as_bytes(), (2.002f32, Some("title,with,commas".to_string()))))
|
||||
Result::Ok((
|
||||
"rest".as_bytes(),
|
||||
(2.002f32, Some("title,with,commas".to_string()))
|
||||
))
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue