aboutsummaryrefslogtreecommitdiffstats
path: root/test/ExternalApiTest.js
diff options
context:
space:
mode:
authorMisko Hevery2010-01-09 13:43:16 -0800
committerMisko Hevery2010-01-09 13:43:16 -0800
commit88eca572fdc7f68a7f384b612052c49de00df433 (patch)
treea84283782326ce7d5467e055c4aaba780adfd8db /test/ExternalApiTest.js
parenteb9e66f4804cf417ce142e5515b039db73d31144 (diff)
downloadangular.js-88eca572fdc7f68a7f384b612052c49de00df433.tar.bz2
change bootstrap to angular.compile
Diffstat (limited to 'test/ExternalApiTest.js')
-rw-r--r--test/ExternalApiTest.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/ExternalApiTest.js b/test/ExternalApiTest.js
index 08771c49..40cb0ab4 100644
--- a/test/ExternalApiTest.js
+++ b/test/ExternalApiTest.js
@@ -3,8 +3,6 @@ ExternalApiTest = TestCase("ExternalApiTest");
ExternalApiTest.prototype = {
testItShouldExposefactory:function(){
var node = $('<div ng-init="a=1">{{b=a+1}}</div>')[0];
- var settings = {};
- var angular = angularFactory(settings);
var scope = angular.compile(node);
assertEquals(1, scope.get('a'));
assertEquals(2, scope.get('b'));