Skip to content

Commit

Permalink
chai@4.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
keithamus committed Mar 3, 2021
1 parent 71245a3 commit 3b9bc7f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions chai.js
Expand Up @@ -14,7 +14,7 @@ var used = [];
* Chai version
*/

exports.version = '4.3.1';
exports.version = '4.3.2';

/*!
* Assertion Error
Expand Down Expand Up @@ -3549,7 +3549,7 @@ module.exports = function (chai, _) {
} else {
if (isDeep) {
this.assert(
list.some(possibility => _.eql(expected, possibility))
list.some(function(possibility) { return _.eql(expected, possibility) })
, 'expected #{this} to deeply equal one of #{exp}'
, 'expected #{this} to deeply equal one of #{exp}'
, list
Expand Down
2 changes: 1 addition & 1 deletion lib/chai.js
Expand Up @@ -10,7 +10,7 @@ var used = [];
* Chai version
*/

exports.version = '4.3.1';
exports.version = '4.3.2';

/*!
* Assertion Error
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -17,7 +17,7 @@
"Veselin Todorov <hi@vesln.com>",
"John Firebaugh <john.firebaugh@gmail.com>"
],
"version": "4.3.1",
"version": "4.3.2",
"repository": {
"type": "git",
"url": "https://github.com/chaijs/chai"
Expand Down

0 comments on commit 3b9bc7f

Please sign in to comment.