Fix: Make appropriate variables mutable here

This commit is contained in:
Matthias Beyer 2017-03-07 17:56:07 +01:00
parent 1c43abb0b0
commit 89b08d77aa

View file

@ -2007,7 +2007,7 @@ aspect = "test"
{ {
println!("Getting {:?} -> Some -> updating", pb_moved); println!("Getting {:?} -> Some -> updating", pb_moved);
assert!(match store.get(pb_moved.clone()).map_err(|e| println!("ERROR GETTING: {:?}", e)) { assert!(match store.get(pb_moved.clone()).map_err(|e| println!("ERROR GETTING: {:?}", e)) {
Ok(Some(fle)) => store.update(&mut fle) Ok(Some(mut fle)) => store.update(&mut fle)
.map_err(|e| println!("ERROR UPDATING: {:?}", e)).is_ok(), .map_err(|e| println!("ERROR UPDATING: {:?}", e)).is_ok(),
_ => false, _ => false,
}); });
@ -2111,7 +2111,7 @@ aspect = "test"
fn test_pre_update_error() { fn test_pre_update_error() {
let storeid = StoreId::new_baseless(PathBuf::from("test_pre_update_error")).unwrap(); let storeid = StoreId::new_baseless(PathBuf::from("test_pre_update_error")).unwrap();
let store = get_store_with_aborting_hook_at_pos(HP::PreUpdate); let store = get_store_with_aborting_hook_at_pos(HP::PreUpdate);
let fle = store.create(storeid).unwrap(); let mut fle = store.create(storeid).unwrap();
assert!(store.update(&mut fle).is_err()); assert!(store.update(&mut fle).is_err());
} }
@ -2156,7 +2156,7 @@ aspect = "test"
fn test_post_update_error() { fn test_post_update_error() {
let store = get_store_with_aborting_hook_at_pos(HP::PostUpdate); let store = get_store_with_aborting_hook_at_pos(HP::PostUpdate);
let pb = StoreId::new_baseless(PathBuf::from("test_post_update_error")).unwrap(); let pb = StoreId::new_baseless(PathBuf::from("test_post_update_error")).unwrap();
let fle = store.create(pb.clone()).unwrap(); let mut fle = store.create(pb.clone()).unwrap();
let pb = pb.with_base(store.path().clone()); let pb = pb.with_base(store.path().clone());
assert!(store.entries.read().unwrap().get(&pb).is_some()); assert!(store.entries.read().unwrap().get(&pb).is_some());
@ -2197,7 +2197,7 @@ aspect = "test"
fn test_pre_update_allowed_error() { fn test_pre_update_allowed_error() {
let storeid = StoreId::new_baseless(PathBuf::from("test_pre_update_allowed_error")).unwrap(); let storeid = StoreId::new_baseless(PathBuf::from("test_pre_update_allowed_error")).unwrap();
let store = get_store_with_allowed_error_hook_at_pos(HP::PreUpdate); let store = get_store_with_allowed_error_hook_at_pos(HP::PreUpdate);
let fle = store.create(storeid).unwrap(); let mut fle = store.create(storeid).unwrap();
assert!(store.update(&mut fle).is_ok()); assert!(store.update(&mut fle).is_ok());
} }
@ -2242,7 +2242,7 @@ aspect = "test"
fn test_post_update_allowed_error() { fn test_post_update_allowed_error() {
let store = get_store_with_allowed_error_hook_at_pos(HP::PostUpdate); let store = get_store_with_allowed_error_hook_at_pos(HP::PostUpdate);
let pb = StoreId::new_baseless(PathBuf::from("test_pre_update_allowed_error")).unwrap(); let pb = StoreId::new_baseless(PathBuf::from("test_pre_update_allowed_error")).unwrap();
let fle = store.create(pb.clone()).unwrap(); let mut fle = store.create(pb.clone()).unwrap();
let pb = pb.with_base(store.path().clone()); let pb = pb.with_base(store.path().clone());
assert!(store.entries.read().unwrap().get(&pb).is_some()); assert!(store.entries.read().unwrap().get(&pb).is_some());