Skip to content

Commit

Permalink
-;
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Doble committed Oct 19, 2017
1 parent 89959b0 commit 9c98b85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/observables.js
Original file line number Diff line number Diff line change
Expand Up @@ -1881,7 +1881,7 @@ test("computed equals function only invoked when necessary", t => {

// Becoming unobserved, then observed won't cause a comparison
disposeAutorun()
disposeAutorun = mobx.autorun(() => values.push(combinedToLowerCase.get()));
disposeAutorun = mobx.autorun(() => values.push(combinedToLowerCase.get()))
t.deepEqual(comparisons, [{ from: "ab", to: "cb" }, { from: "de", to: "df" }])

t.deepEqual(values, ["ab", "cb", "de", "df", "df"])
Expand Down

0 comments on commit 9c98b85

Please sign in to comment.