Fix bug in test file
This commit is contained in:
parent
91713353ba
commit
b20a0dcb2b
1 changed files with 3 additions and 3 deletions
|
|
@ -32,9 +32,9 @@
|
||||||
const UPPER = 100
|
const UPPER = 100
|
||||||
|
|
||||||
clearSet = (node) => {
|
clearSet = (node) => {
|
||||||
node.map().once((_, key) => {
|
node.once((map) => {
|
||||||
node.get(key).put(null)
|
Object.keys(map).forEach(key => node.get(key).put(null))
|
||||||
})
|
}, { wait: 1500 })
|
||||||
}
|
}
|
||||||
|
|
||||||
put = async () => {
|
put = async () => {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue