test(reactivity): fixed small copy & paste error (#140)

This commit is contained in:
Alexander Zibert
2019-10-07 02:18:47 +02:00
committed by Evan You
parent c6b7afcc23
commit 4605f43b95
2 changed files with 4 additions and 4 deletions

View File

@@ -94,7 +94,7 @@ describe('reactivity/collections', () => {
})
it('should observed nested data', () => {
const observed = reactive(new Map())
const observed = reactive(new WeakMap())
const key = {}
observed.set(key, { a: 1 })
let dummy