Skip to content

Commit

Permalink
Merge pull request jashkenas#1442 from davidchambers/fix-message
Browse files Browse the repository at this point in the history
fix erroneous message
  • Loading branch information
akre54 committed Feb 3, 2014
2 parents c4e098c + b83c4a3 commit ff32da2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/objects.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
ok(!_.isEqual(new Boolean(true), new Boolean), 'Boolean objects with different primitive values are not equal');

// Common type coercions.
ok(!_.isEqual(true, new Boolean(false)), 'Boolean objects are not equal to the boolean primitive `true`');
ok(!_.isEqual(new Boolean(false), true), '`new Boolean(false)` is not equal to `true`');
ok(!_.isEqual('75', 75), 'String and number primitives with like values are not equal');
ok(!_.isEqual(new Number(63), new String(63)), 'String and number objects with like values are not equal');
ok(!_.isEqual(75, '75'), 'Commutative equality is implemented for like string and number values');
Expand Down

0 comments on commit ff32da2

Please sign in to comment.