tests/utils: fixed mode for write (#1802)

added `log_info`
This commit is contained in:
Jan Scheer
2021-03-12 22:26:27 +01:00
committed by GitHub
parent e1626b8c64
commit 47f50a0f5f
+1
View File
@@ -261,6 +261,7 @@ impl AtPath {
}
pub fn write(&self, name: &str, contents: &str) {
log_info("open(write)", self.plus_as_string(name));
let _ = std::fs::write(self.plus(name), contents);
}