Skip to content

Commit 86e3438

Browse files
committed
remove FromStr (dead code)
1 parent 08b849e commit 86e3438

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test_runner.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ use srv3_ttml::TimedText;
33
use std::fs::{self, File};
44
use std::io::Write;
55
use std::path::Path;
6-
use std::str::FromStr;
76

87
fn to_ass(timed_text: &TimedText) -> std::io::Result<String> {
98
srv3tovtt_crate::to_ass(timed_text)
@@ -80,7 +79,7 @@ pub fn run_all_tests_with_output() {
8079
}
8180
}
8281

83-
summary.push_str(&format!("\n## Summary\n"));
82+
summary.push_str("\n## Summary\n");
8483
summary.push_str(&format!("- **Passed**: {}\n", passed));
8584
summary.push_str(&format!("- **Failed**: {}\n", failed));
8685
summary.push_str(&format!("- **Total**: {}\n", test_files.len()));

0 commit comments

Comments
 (0)