Permalink
Browse files
test(ngList): add missing '>' to `textarea` closing tag
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+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=" "></textarea'); |
|
|
helper.compileInput('<textarea type="text" ng-model="list" ng-trim="false" ng-list=" "></textarea>'); |
|
|
helper.changeInputValueTo('a\nb'); |
|
|
expect($rootScope.list).toEqual(['a','b']); |
|
|
}); |
|
|
|