mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-16 23:30:23 +00:00
chore(inputSpec): fixed typo
This commit is contained in:
parent
28cfd96fdc
commit
eb90672aae
1 changed files with 2 additions and 2 deletions
|
|
@ -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');
|
||||
|
|
|
|||
Loading…
Reference in a new issue