aboutsummaryrefslogtreecommitdiffstats
path: root/test/ng/directive
diff options
context:
space:
mode:
authorBen Wiklund2014-01-05 20:01:33 -0800
committerTobias Bosch2014-01-06 16:37:47 -0800
commiteb90672aae0fae1fdcd8b05b14b04f1e6818662b (patch)
treef8880c6bd875b55a7e5b15d044d160a761b0b7c6 /test/ng/directive
parent28cfd96fdc58bbf166e2908126598f20bbed5eda (diff)
downloadangular.js-eb90672aae0fae1fdcd8b05b14b04f1e6818662b.tar.bz2
chore(inputSpec): fixed typo
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');