1 parent c5a5de5 commit 0f0301dCopy full SHA for 0f0301d
1 file changed
src/config.rs
@@ -588,10 +588,10 @@ mod tests {
588
// Note: We need to make sure we're running from the project root usually.
589
// If not found, panic with a helpful message.
590
if !fixture_path.exists() {
591
- eprintln!(
+ panic!(
592
"Fixture not found at {:?}. Current Dir: {:?}",
593
fixture_path,
594
- std::env::current_dir()?
+ std::env::current_dir().unwrap_or_default()
595
);
596
}
597
let loaded_config = EncfsConfig::load(fixture_path)?;
0 commit comments