mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-05-09 23:34:42 +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() {
|
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" />');
|
compileInput('<input type="text" ng-model="value" ng-minlength="3" />');
|
||||||
|
|
||||||
changeInputValueTo('aa');
|
changeInputValueTo('aa');
|
||||||
|
|
@ -738,7 +738,7 @@ describe('input', function() {
|
||||||
|
|
||||||
describe('maxlength', 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" />');
|
compileInput('<input type="text" ng-model="value" ng-maxlength="5" />');
|
||||||
|
|
||||||
changeInputValueTo('aaaaaaaa');
|
changeInputValueTo('aaaaaaaa');
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue