diff options
| author | Ben Wiklund | 2014-01-05 20:01:33 -0800 | 
|---|---|---|
| committer | Tobias Bosch | 2014-01-06 16:37:47 -0800 | 
| commit | eb90672aae0fae1fdcd8b05b14b04f1e6818662b (patch) | |
| tree | f8880c6bd875b55a7e5b15d044d160a761b0b7c6 /test | |
| parent | 28cfd96fdc58bbf166e2908126598f20bbed5eda (diff) | |
| download | angular.js-eb90672aae0fae1fdcd8b05b14b04f1e6818662b.tar.bz2 | |
chore(inputSpec): fixed typo
Diffstat (limited to 'test')
| -rw-r--r-- | test/ng/directive/inputSpec.js | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ng/directive/inputSpec.js b/test/ng/directive/inputSpec.js index c9a345cd..26abceae 100644 --- a/test/ng/directive/inputSpec.js +++ b/test/ng/directive/inputSpec.js @@ -724,7 +724,7 @@ describe('input', function() {    describe('minlength', function() { -    it('should invalid shorter than given minlenght', function() { +    it('should invalid shorter than given minlength', function() {        compileInput('<input type="text" ng-model="value" ng-minlength="3" />');        changeInputValueTo('aa'); @@ -738,7 +738,7 @@ describe('input', function() {    describe('maxlength', function() { -    it('should invalid shorter than given maxlenght', function() { +    it('should invalid shorter than given maxlength', function() {        compileInput('<input type="text" ng-model="value" ng-maxlength="5" />');        changeInputValueTo('aaaaaaaa');  | 
