Fix bug in test file

This commit is contained in:
Daniel Lugo 2021-05-13 11:08:56 -04:00
parent 91713353ba
commit b20a0dcb2b

View file

@ -32,9 +32,9 @@
const UPPER = 100
clearSet = (node) => {
node.map().once((_, key) => {
node.get(key).put(null)
})
node.once((map) => {
Object.keys(map).forEach(key => node.get(key).put(null))
}, { wait: 1500 })
}
put = async () => {