mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-05-18 04:03:45 +08:00
chore(inputSpec): fixed typo
This commit is contained in:
committed by
Tobias Bosch
parent
28cfd96fdc
commit
eb90672aae
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user