fix coverage logging

pull/10758/head
Dustin Lagoy 2025-04-07 12:58:19 -07:00
parent b40aba78e4
commit c86b415965
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ impl From<RawCoverage> for Coverage {
// so check each in the path
let raw_path: std::path::PathBuf =
[&source.name, &class.filename].iter().collect();
if let Ok(path) = std::fs::canonicalize(raw_path) {
if let Ok(path) = std::fs::canonicalize(raw_path.clone()) {
log::debug!("add file {:?} to coverage", path);
files.insert(
path,