fix(xtask): Fix an expect message.

This commit is contained in:
Ivan Enderlin
2026-02-25 11:08:49 +01:00
parent 3aa424117c
commit 99bfb94d6d
+1 -1
View File
@@ -54,7 +54,7 @@ pub(super) fn run(log_path: path::PathBuf, output_path: path::PathBuf) -> Result
)
.ignore_whitespace(true)
.build()
.expect("Failed to build the `find_sync_start regex`");
.expect("Failed to build the `find_sync` regex");
let log_file = fs::File::open(&log_path)?;
let mut output_file = fs::File::create(&output_path)?;