From f3629f2d20b8ae1465fa4df7834d780c830d8660 Mon Sep 17 00:00:00 2001 From: mohamed amr Date: Sat, 9 Jan 2016 21:26:41 +0200 Subject: [PATCH] fix(ngListDiretive): add missing '>' to textarea closing tag ngListSpec --- test/ng/directive/ngListSpec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ng/directive/ngListSpec.js b/test/ng/directive/ngListSpec.js index dd06913ba029..040cda370e0d 100644 --- a/test/ng/directive/ngListSpec.js +++ b/test/ng/directive/ngListSpec.js @@ -133,7 +133,7 @@ describe('ngList', function() { }); it("should support splitting on newlines", function() { - helper.compileInput(''); helper.changeInputValueTo('a\nb'); expect($rootScope.list).toEqual(['a','b']); });