Skip to content
Permalink
Browse files

test(ngList): add missing '>' to `textarea` closing tag

Fixes #13728
Closes #13727
  • Loading branch information
m-amr authored and gkalpak committed Jan 9, 2016
1 parent 6d85f24 commit 7f1cd3e6a24ce4fb31326271f478865d9ae8d4c4
Showing with 1 addition and 1 deletion.
  1. +1 −1 test/ng/directive/ngListSpec.js
@@ -133,7 +133,7 @@ describe('ngList', function() {
});

it("should support splitting on newlines", function() {
helper.compileInput('<textarea type="text" ng-model="list" ng-trim="false" ng-list="&#10;"></textarea');
helper.compileInput('<textarea type="text" ng-model="list" ng-trim="false" ng-list="&#10;"></textarea>');
helper.changeInputValueTo('a\nb');
expect($rootScope.list).toEqual(['a','b']);
});

0 comments on commit 7f1cd3e

Please sign in to comment.
You can’t perform that action at this time.