ci(fuzz): Bug fix for missing path arg

This commit is contained in:
Chris Hennick 2024-06-08 13:55:16 -07:00
parent df9c71700e
commit 62b9c53651
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -63,10 +63,10 @@ impl <'k> Debug for FileOperation<'k> {
options, self.path, target.to_owned())) options, self.path, target.to_owned()))
}, },
BasicFileOperation::ShallowCopy(base) => { BasicFileOperation::ShallowCopy(base) => {
f.write_fmt(format_args!("{:?}writer.shallow_copy_file_from_path(path, {:?})?;\n", base, self.path)) f.write_fmt(format_args!("{:?}writer.shallow_copy_file_from_path({:?}, {:?})?;\n", base, base.path, self.path))
}, },
BasicFileOperation::DeepCopy(base) => { BasicFileOperation::DeepCopy(base) => {
f.write_fmt(format_args!("{:?}writer.deep_copy_file_from_path(path, {:?})?;\n", base, self.path)) f.write_fmt(format_args!("{:?}writer.deep_copy_file_from_path({:?}, {:?})?;\n", base, base.path, self.path))
}, },
BasicFileOperation::MergeWithOtherFile {operations} => { BasicFileOperation::MergeWithOtherFile {operations} => {
f.write_str("let sub_writer = {\n\ f.write_str("let sub_writer = {\n\