test(startup): encode observation digests with shared hex helper

This commit is contained in:
overtrue
2026-09-06 15:10:28 +08:00
parent 44333e136b
commit fdb3d9f9bb
3 changed files with 4 additions and 4 deletions
@@ -399,7 +399,7 @@ mod tests {
}
hash.update(&buf[..len]);
}
Ok(format!("{:x}", hash.finalize()))
Ok(rustfs_utils::crypto::hex(hash.finalize()))
}
fn startup_cas_git(args: &[&str]) -> std::io::Result<String> {