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 8b63603 commit 7e24590fa3788ac126837c8d9f1be08e1a3258fb
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 7e24590

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