aboutsummaryrefslogtreecommitdiffstats
path: root/test/scenario/dslSpec.js
diff options
context:
space:
mode:
authorMisko Hevery2010-10-20 23:17:59 -0700
committerMisko Hevery2010-10-20 23:17:59 -0700
commit05d4971abb5b8e21c5d33a71771a961c7932206b (patch)
treecb71f9876d97f34728bdcf33edaad6678cfed6e4 /test/scenario/dslSpec.js
parentc6107fe8acbc2c7631c728044bb57b608c3aeef1 (diff)
downloadangular.js-05d4971abb5b8e21c5d33a71771a961c7932206b.tar.bz2
fix some of the failing ie tests
Diffstat (limited to 'test/scenario/dslSpec.js')
-rw-r--r--test/scenario/dslSpec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/scenario/dslSpec.js b/test/scenario/dslSpec.js
index 0d523ad3..e3e06b3e 100644
--- a/test/scenario/dslSpec.js
+++ b/test/scenario/dslSpec.js
@@ -222,11 +222,11 @@ describe("angular.scenario.dsl", function() {
});
it('should execute custom query', function() {
- doc.append('<a id="test" href="myUrl"></a>');
+ doc.append('<a id="test" href="http://example.com/myUrl"></a>');
$root.dsl.element('#test').query(function(elements, done) {
done(null, elements.attr('href'));
});
- expect($root.futureResult).toEqual('myUrl');
+ expect($root.futureResult).toEqual('http://example.com/myUrl');
});
});