aboutsummaryrefslogtreecommitdiffstats
path: root/test/ng/directive
diff options
context:
space:
mode:
Diffstat (limited to 'test/ng/directive')
-rw-r--r--test/ng/directive/inputSpec.js4
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');