Browse Source

assert: remove unneeded condition

PR-URL: https://github.com/nodejs/node/pull/11314
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
v6.x
Rich Trott 8 years ago
committed by Myles Borins
parent
commit
32b264c33b
No known key found for this signature in database GPG Key ID: 933B01F40B5CA946
  1. 3
      lib/assert.js

3
lib/assert.js

@ -291,7 +291,8 @@ assert.notStrictEqual = function notStrictEqual(actual, expected, message) {
};
function expectedException(actual, expected) {
if (!actual || !expected) {
// actual is guaranteed to be an Error object, but we need to check expected.
if (!expected) {
return false;
}

Loading…
Cancel
Save