diff --git a/__tests__/animation.spec.js b/__tests__/animation.spec.js index e444e3b6..3a01ca97 100644 --- a/__tests__/animation.spec.js +++ b/__tests__/animation.spec.js @@ -5,7 +5,7 @@ var Q = require('q'); describe('Promise animation', function() { it('Will execute the closure', function() { - var value = 1; + var value = 9; var closure = function() { value++; }; @@ -19,7 +19,7 @@ describe('Promise animation', function() { }); it('also takes animation packs', function() { - var value = 9; + var value = 0; var animation = new PromiseAnimation({ animation: function() { value++; } });