aboutsummaryrefslogtreecommitdiffstats
path: root/test/BinderTest.js
diff options
context:
space:
mode:
authorMisko Hevery2010-01-25 23:49:52 -0800
committerMisko Hevery2010-01-25 23:49:52 -0800
commita2540fd581f35e8f79240d827d2252da5798c3a2 (patch)
tree35d814703e9edbb2c36d0864b2f8a317bba4d830 /test/BinderTest.js
parentba9eef40cfbb6cd969d566b43fd9129642d01351 (diff)
downloadangular.js-a2540fd581f35e8f79240d827d2252da5798c3a2.tar.bz2
fixes to make it pass on IE
Diffstat (limited to 'test/BinderTest.js')
-rw-r--r--test/BinderTest.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/BinderTest.js b/test/BinderTest.js
index 6ef46fae..cf2fa31a 100644
--- a/test/BinderTest.js
+++ b/test/BinderTest.js
@@ -401,7 +401,7 @@ BinderTest.prototype.testRepeaterUpdateBindings = function(){
};
BinderTest.prototype.testRepeaterContentDoesNotBind = function(){
- var a = compile('<ul><LI ng-repeat="item in model.items"><span ng-bind="item.a"/></li></ul>');
+ var a = compile('<ul><LI ng-repeat="item in model.items"><span ng-bind="item.a"></span></li></ul>');
a.scope.set('model', {items:[{a:"A"}]});
a.binder.updateView();
assertEquals('<ul>' +