ci(fuzz): Fix build errors in Debug implementations
This commit is contained in:
parent
2333a847f7
commit
383d72427c
2 changed files with 5 additions and 3 deletions
|
@ -47,7 +47,7 @@ impl <'k> Debug for FileOperation<'k> {
|
|||
f.write_fmt(format_args!("let options = {:?};\n\
|
||||
writer.start_file_from_path({:?}, options)?;\n", options, self.path))?;
|
||||
for content_slice in contents {
|
||||
f.write_fmt("writer.write_all(&({ : ? }[..] as [u8]))?;\n", content_slice)?;
|
||||
f.write_fmt(format_args!("writer.write_all(&({:?}[..] as [u8]))?;\n", content_slice))?;
|
||||
}
|
||||
f.write_str("drop(options);\n")
|
||||
},
|
||||
|
|
|
@ -93,8 +93,10 @@ impl Debug for DateTime {
|
|||
if *self == Self::default() {
|
||||
return f.write_str("DateTime::default()");
|
||||
}
|
||||
f.write_fmt(format_args!("DateTime::from_date_and_time({}, {}, {}, {}, {}, {})?",
|
||||
self.year, self.month, self.day, self.hour, self.minute, self.second))
|
||||
f.write_fmt(format_args!(
|
||||
"DateTime::from_date_and_time({}, {}, {}, {}, {}, {})?",
|
||||
self.year, self.month, self.day, self.hour, self.minute, self.second
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue