Skip to content

Commit

Permalink
Fixed broken test
Browse files Browse the repository at this point in the history
Extracted from emberjs#13
  • Loading branch information
johanneswuerbach committed Feb 7, 2015
1 parent e144a97 commit 9cf1cf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/it-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ describe('it', function() {
expect(skippedError).to.be.null;
var pendingSpec = Mocha.suite.suites.find(function(suite) {
return suite.tests.find(function(test) {
return test.title === 'a skipped spec';
return test.title === 'is a skipped spec';
});
});
expect(pendingSpec).to.be.defined;
expect(pendingSpec).to.exist;
});

var callback = function() {
Expand Down

0 comments on commit 9cf1cf6

Please sign in to comment.