Skip to content

Commit

Permalink
f Use validate_data flag
Browse files Browse the repository at this point in the history
  • Loading branch information
tnull committed Dec 12, 2024
1 parent b90a281 commit adcbd91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lightning-persister/src/test_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ pub(crate) fn do_test_data_migration<S: MigratableKVStore, T: MigratableKVStore>
let all_keys = source_store.list_all_keys().unwrap();
assert_eq!(all_keys.len(), total_num_entries);

migrate_kv_store_data(source_store, target_store, move_data).unwrap();
migrate_kv_store_data(source_store, target_store, true, move_data).unwrap();
if move_data {
assert_eq!(source_store.list_all_keys().unwrap().len(), 0);
}
Expand Down

0 comments on commit adcbd91

Please sign in to comment.