Skip to content

Commit

Permalink
Trim trailing whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
astorije committed Aug 2, 2015
1 parent 8780742 commit 8b17de4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/chai/core/assertions.js
Original file line number Diff line number Diff line change
Expand Up @@ -1453,7 +1453,7 @@ module.exports = function (chai, _) {
, result
);
}

Assertion.addMethod('satisfy', satisfy);
Assertion.addMethod('satisfies', satisfy);

Expand Down Expand Up @@ -1663,7 +1663,7 @@ module.exports = function (chai, _) {
/**
* ### .extensible
*
* Asserts that the target is extensible (can have new properties added to
* Asserts that the target is extensible (can have new properties added to
* it).
*
* var nonExtensibleObject = Object.preventExtensions({});
Expand Down
2 changes: 1 addition & 1 deletion test/should.js
Original file line number Diff line number Diff line change
Expand Up @@ -936,7 +936,7 @@ describe('should', function() {
fn = function() { obj.value += 5 },
sameFn = function() { obj.value += 0 },
decFn = function() { obj.value -= 3 },
bangFn = function() { obj.str += '!' };
bangFn = function() { obj.str += '!' };

fn.should.change(obj, 'value');
sameFn.should.not.change(obj, 'value');
Expand Down

0 comments on commit 8b17de4

Please sign in to comment.