]> git.proxmox.com Git - proxmox-backup.git/commitdiff
fix tests/catar.rs - add missing parameter
authorDietmar Maurer <dietmar@proxmox.com>
Fri, 18 Jan 2019 16:39:51 +0000 (17:39 +0100)
committerDietmar Maurer <dietmar@proxmox.com>
Fri, 18 Jan 2019 16:39:51 +0000 (17:39 +0100)
tests/catar.rs

index cca9b94f0f755194df717cf17656cac6459dcc3a..0e72c0c6adc9a56ec50b33090be1a44fce2d74d6 100644 (file)
@@ -26,7 +26,7 @@ fn run_test(dir_name: &str) -> Result<(), Error> {
 
     let path = std::path::PathBuf::from(dir_name);
 
-    CaTarEncoder::encode(path, &mut dir, &mut writer)?;
+    CaTarEncoder::encode(path, &mut dir, None, &mut writer)?;
 
     Command::new("cmp")
         .arg("--verbose")