Skip to content

Commit

Permalink
"fasley" to "falsey"
Browse files Browse the repository at this point in the history
  • Loading branch information
paulfalgout committed Feb 20, 2015
1 parent 5bfd4f9 commit 49a07e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/objects.js
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@

//null edge cases
var oCon = {'constructor': Object};
deepEqual(_.map([null, undefined, 5, {}], _.partial(_.isMatch, _, oCon)), [false, false, false, true], 'doesnt fasley match constructor on undefined/null');
deepEqual(_.map([null, undefined, 5, {}], _.partial(_.isMatch, _, oCon)), [false, false, false, true], 'doesnt falsey match constructor on undefined/null');
});

test('matcher', function() {
Expand Down Expand Up @@ -832,7 +832,7 @@

//null edge cases
var oCon = _.matcher({'constructor': Object});
deepEqual(_.map([null, undefined, 5, {}], oCon), [false, false, false, true], 'doesnt fasley match constructor on undefined/null');
deepEqual(_.map([null, undefined, 5, {}], oCon), [false, false, false, true], 'doesnt falsey match constructor on undefined/null');
});

test('matcher', function() {
Expand Down Expand Up @@ -889,7 +889,7 @@

//null edge cases
var oCon = _.matcher({'constructor': Object});
deepEqual(_.map([null, undefined, 5, {}], oCon), [false, false, false, true], 'doesnt fasley match constructor on undefined/null');
deepEqual(_.map([null, undefined, 5, {}], oCon), [false, false, false, true], 'doesnt falsey match constructor on undefined/null');
});

test('findKey', function() {
Expand Down

0 comments on commit 49a07e2

Please sign in to comment.