ci(fuzz): Bug fix for missing path arg
This commit is contained in:
parent
df9c71700e
commit
62b9c53651
1 changed files with 2 additions and 2 deletions
|
@ -63,10 +63,10 @@ impl <'k> Debug for FileOperation<'k> {
|
|||
options, self.path, target.to_owned()))
|
||||
},
|
||||
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) => {
|
||||
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} => {
|
||||
f.write_str("let sub_writer = {\n\
|
||||
|
|
Loading…
Add table
Reference in a new issue