Skip to content

Commit

Permalink
Fix #169. Good catch!
Browse files Browse the repository at this point in the history
  • Loading branch information
marcuswestin committed Jan 10, 2017
1 parent 5ade5d6 commit 65b4ace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/tests.js
Expand Up @@ -65,7 +65,7 @@ function runFirstPass(store) {
assert(store.get('foo').arr instanceof Array, "Array property 'arr' of stored object 'foo' is not an instance of Array")
assert(store.get('foo').arr.length == 3, "The length of Array property 'arr' stored on object 'foo' is not 3")

assert(store.enabled = !store.disabled, "Store.enabled is not the reverse of .disabled");
assert(store.enabled == !store.disabled, "Store.enabled is not the reverse of .disabled");

store.remove('circularReference')
var circularOne = {}
Expand Down

0 comments on commit 65b4ace

Please sign in to comment.