mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-12 12:33:07 +00:00
Changed to use TestBed.inject method instead of deprecated TestBed.get
This commit is contained in:
@@ -74,8 +74,8 @@ describe('AuthEffects', () => {
|
||||
],
|
||||
});
|
||||
|
||||
authEffects = TestBed.get(AuthEffects);
|
||||
store = TestBed.get(Store);
|
||||
authEffects = TestBed.inject(AuthEffects);
|
||||
store = TestBed.inject(Store as any);
|
||||
});
|
||||
|
||||
describe('authenticate$', () => {
|
||||
|
Reference in New Issue
Block a user