Fix test StoreId name
The name of the storeid was duplicated, which caused the tests to fail from time to time. This patch fixes the name of the entry which is used to test.
This commit is contained in:
parent
924692d7cb
commit
fc464446a9
1 changed files with 1 additions and 1 deletions
|
@ -2943,7 +2943,7 @@ aspect = "test"
|
|||
#[test]
|
||||
fn test_post_delete_allowed_error() {
|
||||
let store = get_store_with_allowed_error_hook_at_pos(HP::PostDelete);
|
||||
let pb = StoreId::new_baseless(PathBuf::from("test_pre_delete_allowed_error")).unwrap();
|
||||
let pb = StoreId::new_baseless(PathBuf::from("test_post_delete_allowed_error")).unwrap();
|
||||
|
||||
assert!(store.create(pb.clone()).is_ok());
|
||||
let pb = pb.with_base(store.path().clone());
|
||||
|
|
Loading…
Reference in a new issue