Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 7f1cd3e

Browse files
m-amrgkalpak
authored andcommitted
test(ngList): add missing '>' to textarea closing tag
Fixes #13728 Closes #13727
1 parent 6d85f24 commit 7f1cd3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/ng/directive/ngListSpec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ describe('ngList', function() {
133133
});
134134

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

0 commit comments

Comments
 (0)