We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8334a2 commit 673b4aaCopy full SHA for 673b4aa
ipld/hamt/tests/hamt_tests.rs
@@ -166,6 +166,7 @@ fn test_n_keys(factory: HamtFactory) {
166
} else if j == (2 * i) / 3 {
167
// Flush and reload.
168
let new_root = hamt.flush().unwrap();
169
+ hamt.set(key(0), "yolo".to_string()).unwrap();
170
hamt.set_root(&new_root).unwrap();
171
}
172
ipld/kamt/tests/kamt_tests.rs
@@ -87,6 +87,7 @@ fn test_n_keys(factory: KamtFactory) {
87
88
89
let new_root = kamt.flush().unwrap();
90
+ kamt.set(0, "yolo".to_string()).unwrap();
91
kamt.set_root(&new_root).unwrap();
92
93
0 commit comments