Skip to content
This repository was archived by the owner on Mar 17, 2025. It is now read-only.

Commit 81bcfcd

Browse files
author
jwngr
committed
Minor repo cleanup
1 parent 83399f8 commit 81bcfcd

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

src/firebase.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
return function() {
99
throw new Error('$firebase has been removed. You may instantiate $FirebaseArray and $FirebaseObject ' +
1010
'directly now. For simple write operations, just use the Firebase ref directly. ' +
11-
'See the AngularFire 1.0.0 changelog for details: https://www.firebase.com/docs/web/changelog.html');
11+
'See the AngularFire 1.0.0 changelog for details: https://www.firebase.com/docs/web/libraries/angular/changelog.html');
1212
};
1313
});
1414

tests/unit/FirebaseArray.spec.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,12 @@ describe('$FirebaseArray', function () {
2828
}
2929
};
3030

31-
var $fbOldTodo, arr, $FirebaseArray, $utils, $rootScope, $timeout, destroySpy, testutils;
31+
var arr, $FirebaseArray, $utils, $timeout, testutils;
3232
beforeEach(function() {
3333
module('firebase');
3434
module('testutils');
35-
inject(function (_$FirebaseArray_, $firebaseUtils, _$rootScope_, _$timeout_, _testutils_) {
35+
inject(function (_$FirebaseArray_, $firebaseUtils, _$timeout_, _testutils_) {
3636
testutils = _testutils_;
37-
destroySpy = jasmine.createSpy('destroy spy');
38-
$rootScope = _$rootScope_;
3937
$timeout = _$timeout_;
4038
$FirebaseArray = _$FirebaseArray_;
4139
$utils = $firebaseUtils;

0 commit comments

Comments
 (0)