forked from hazza/dspace-angular
Changed to use TestBed.inject method instead of deprecated TestBed.get
This commit is contained in:
@@ -94,8 +94,8 @@ describe('SubmissionObjectEffects test suite', () => {
|
||||
],
|
||||
});
|
||||
|
||||
submissionObjectEffects = TestBed.get(SubmissionObjectEffects);
|
||||
store = TestBed.get(Store);
|
||||
submissionObjectEffects = TestBed.inject(SubmissionObjectEffects);
|
||||
store = TestBed.inject(Store as any);
|
||||
});
|
||||
|
||||
describe('loadForm$', () => {
|
||||
|
Reference in New Issue
Block a user