mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-10 03:23:07 +00:00
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