fix(push): push deletion

This commit is contained in:
grimhilt
2024-04-18 15:19:35 +02:00
parent e8c8ab9dfe
commit 4504b98112
6 changed files with 36 additions and 29 deletions

View File

@@ -94,4 +94,15 @@ mod add_tests {
client.clean();
}
#[test]
fn add_no_change() {
assert!(false);
// add a file push it and add it again
// let id = get_random_test_id();
// let mut client = ClientTest::new(id).init();
//
//
// client.clean();
}
}

View File

@@ -100,8 +100,7 @@ impl ClientTest {
let mut path = self.volume.clone();
path.push_str("/");
path.push_str(name);
fs::remove_file(name)?;
fs::remove_file(path)?;
Ok(())
}