fix(cli): correct test update option

This commit is contained in:
WillLillis 2025-01-12 00:21:58 -05:00 committed by Amaan Qureshi
parent ea9c85fb94
commit d65a74a667

View file

@ -724,7 +724,7 @@ pub fn parse_tests(path: &Path) -> io::Result<TestEntry> {
Ok(TestEntry::Group {
name,
children,
file_path: Some(path.to_path_buf()),
file_path: None,
})
} else {
let content = fs::read_to_string(path)?;