fix: stabilize merge fallout test fixtures

This commit is contained in:
YeonGyu-Kim
2026-04-02 11:31:53 +09:00
parent 12c364da34
commit 0bd0914347
3 changed files with 33 additions and 20 deletions

View File

@@ -1053,7 +1053,9 @@ mod tests {
.to_string()
.contains("top-level settings value must be a JSON object"));
fs::remove_dir_all(root).expect("cleanup temp dir");
if root.exists() {
fs::remove_dir_all(root).expect("cleanup temp dir");
}
}
#[test]