Skip to content

Commit

Permalink
Merge pull request mochajs#1909 from berkerpeksag/patch-1
Browse files Browse the repository at this point in the history
Fix typo in test/reporters/nyan.js
dasilvacontin committed Sep 29, 2015
2 parents c4393c4 + 63e668a commit 0c70277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/reporters/nyan.js
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ describe('nyan face', function () {
nyanCat.face.call(nyanCat).should.equal('( x .x)');
});

it('expected nyan face:(x .x) when "peinding" at least one and no failing', function () {
it('expected nyan face:(x .x) when "pending" at least one and no failing', function () {
var nyanCat = new NyanCat({on: function(){}});
nyanCat.stats = { passes: 2, pending: 1, failures: 0 };
nyanCat.face.call(nyanCat).should.equal('( o .o)');

0 comments on commit 0c70277

Please sign in to comment.