aboutsummaryrefslogtreecommitdiffstats
path: root/test/service/scopeSpec.js
diff options
context:
space:
mode:
authorIgor Minar2012-03-05 14:52:34 -0800
committerIgor Minar2012-03-08 11:01:22 -0800
commite0ace15cd325b28f5c9a2a6f8e040dfd2701b1f4 (patch)
tree601642cc5b82f7388275a94761ce73e74161e57f /test/service/scopeSpec.js
parent6a98c52c847ecc620118f3ccfdd66c3956c0fb01 (diff)
downloadangular.js-e0ace15cd325b28f5c9a2a6f8e040dfd2701b1f4.tar.bz2
docs($rootScope): rename ttl to digestTtl + docs
Diffstat (limited to 'test/service/scopeSpec.js')
-rw-r--r--test/service/scopeSpec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/service/scopeSpec.js b/test/service/scopeSpec.js
index c4940931..d3713e9d 100644
--- a/test/service/scopeSpec.js
+++ b/test/service/scopeSpec.js
@@ -191,7 +191,7 @@ describe('Scope', function() {
it('should prevent infinite recursion and print watcher expression',function() {
module(function($rootScopeProvider) {
- $rootScopeProvider.ttl(100);
+ $rootScopeProvider.digestTtl(100);
});
inject(function($rootScope) {
$rootScope.$watch('a', function() {$rootScope.b++;});