Skip to content

Commit

Permalink
sync RSVP 3.0.7
Browse files Browse the repository at this point in the history
The test failure on 371 of defered_test.js:

RSVP’s latest performance tuning reduced many unneeded nextTick’s. In this specific scenario, with no subscribers the promise did not need to publish its state change and now it correctly does not.
  • Loading branch information
stefanpenner committed Jun 1, 2014
1 parent 3fe5ce0 commit 787525f
Show file tree
Hide file tree
Showing 2 changed files with 580 additions and 431 deletions.
2 changes: 1 addition & 1 deletion packages/ember-runtime/tests/mixins/deferred_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ test("given `Ember.testing = true`, correctly informs the test suite about async
name: 'tomster'
});

equal(asyncStarted, 1);
equal(asyncStarted, 0);
equal(asyncEnded, 0);

user.then(function(user){
Expand Down

0 comments on commit 787525f

Please sign in to comment.