aboutsummaryrefslogtreecommitdiffstats
path: root/test/AngularSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/AngularSpec.js')
-rw-r--r--test/AngularSpec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/AngularSpec.js b/test/AngularSpec.js
index 7e6f35fa..a957fcf7 100644
--- a/test/AngularSpec.js
+++ b/test/AngularSpec.js
@@ -416,7 +416,7 @@ describe('angular', function() {
it('should eagerly instantiate a service if $eager is true', function() {
var log = [];
angular.service('svc1', function() { log.push('svc1'); }, {$eager: true});
- createInjector();
+ createInjector(angularService);
expect(log).toEqual(['svc1']);
});
});