aboutsummaryrefslogtreecommitdiffstats
path: root/test/directivesSpec.js
diff options
context:
space:
mode:
authorMisko Hevery2010-04-21 14:29:05 -0700
committerMisko Hevery2010-04-21 14:29:05 -0700
commit8b29156a2ddcc738f9b0cf8dfc48a8648474884d (patch)
tree4bbb4e936ee8f2ab34ed03509ad5da0b46e4ef04 /test/directivesSpec.js
parent4aaec251dfebd01729c0726f07fc113b97679219 (diff)
downloadangular.js-8b29156a2ddcc738f9b0cf8dfc48a8648474884d.tar.bz2
ie6 now passes
Diffstat (limited to 'test/directivesSpec.js')
-rw-r--r--test/directivesSpec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/directivesSpec.js b/test/directivesSpec.js
index d012fdd0..71402af7 100644
--- a/test/directivesSpec.js
+++ b/test/directivesSpec.js
@@ -52,8 +52,8 @@ describe("directives", function(){
});
it('should ng-bind-attr', function(){
- var scope = compile('<img ng-bind-attr="{src:\'mysrc\', alt:\'myalt\'}"/>');
- expect(element.attr('src')).toEqual('mysrc');
+ var scope = compile('<img ng-bind-attr="{src:\'http://localhost/mysrc\', alt:\'myalt\'}"/>');
+ expect(element.attr('src')).toEqual('http://localhost/mysrc');
expect(element.attr('alt')).toEqual('myalt');
});