aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Minar2010-11-03 10:41:37 -0700
committerIgor Minar2010-11-03 10:41:37 -0700
commit91c835dc0eb5b03e968ad890c41323de80bf45da (patch)
treef8ece6e9be847dcfcd02cdd93afca4da42a3dc95
parentdfa8baf59a1dafe6cc4c4e46da123cb85e85e0a4 (diff)
downloadangular.js-91c835dc0eb5b03e968ad890c41323de80bf45da.tar.bz2
fix dslSpec for IE
-rw-r--r--test/scenario/dslSpec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/scenario/dslSpec.js b/test/scenario/dslSpec.js
index 881d629c..f9833e8b 100644
--- a/test/scenario/dslSpec.js
+++ b/test/scenario/dslSpec.js
@@ -391,7 +391,7 @@ describe("angular.scenario.dsl", function() {
it('should return innerHTML for all the other elements', function() {
doc.append('<div class="ng-binding" ng:bind="foo.bar">some <b>value</b></div>');
$root.dsl.binding('foo.bar');
- expect($root.futureResult).toEqual('some <b>value</b>');
+ expect($root.futureResult.toLowerCase()).toEqual('some <b>value</b>');
});
it('should select binding in template by name', function() {