Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 3c7f0f7

Browse files
rolfyonecaitp
authored andcommitted
test(filter): fix typo in descriptions
Two descriptions contain typo's to the word predicate. Closes #8004
1 parent f6681d4 commit 3c7f0f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/ng/filter/filterSpec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ describe('Filter: filter', function() {
4949
expect(filter(items, function(i) {return i.done;}).length).toBe(1);
5050
});
5151

52-
it('should take object as perdicate', function() {
52+
it('should take object as predicate', function() {
5353
var items = [{first: 'misko', last: 'hevery'},
5454
{first: 'adam', last: 'abrons'}];
5555

@@ -61,7 +61,7 @@ describe('Filter: filter', function() {
6161
});
6262

6363

64-
it('should support predicat object with dots in the name', function() {
64+
it('should support predicate object with dots in the name', function() {
6565
var items = [{'first.name': 'misko', 'last.name': 'hevery'},
6666
{'first.name': 'adam', 'last.name': 'abrons'}];
6767

0 commit comments

Comments
 (0)