test(filter): fix typo in descriptions

Two descriptions contain typo's to the word predicate.

Closes #8004
This commit is contained in:
Paul Harris
2014-06-27 19:37:03 +10:00
committed by Caitlin Potter
parent f6681d41a4
commit 3c7f0f7a36
+2 -2
View File
@@ -49,7 +49,7 @@ describe('Filter: filter', function() {
expect(filter(items, function(i) {return i.done;}).length).toBe(1);
});
it('should take object as perdicate', function() {
it('should take object as predicate', function() {
var items = [{first: 'misko', last: 'hevery'},
{first: 'adam', last: 'abrons'}];
@@ -61,7 +61,7 @@ describe('Filter: filter', function() {
});
it('should support predicat object with dots in the name', function() {
it('should support predicate object with dots in the name', function() {
var items = [{'first.name': 'misko', 'last.name': 'hevery'},
{'first.name': 'adam', 'last.name': 'abrons'}];