@@ -10,17 +10,17 @@ import { ActivatedRoute } from '@angular/router';
1010import { APP_CONFIG } from '@dspace/config/app-config.interface' ;
1111import { NotifyInfoService } from '@dspace/core/coar-notify/notify-info/notify-info.service' ;
1212import { AuthorizationDataService } from '@dspace/core/data/feature-authorization/authorization-data.service' ;
13+ import { APP_DATA_SERVICES_MAP } from '@dspace/core/data-services-map-type' ;
14+ import { LocaleService } from '@dspace/core/locale/locale.service' ;
15+ import { ResourceType } from '@dspace/core/shared/resource-type' ;
1316import { ActivatedRouteStub } from '@dspace/core/testing/active-router.stub' ;
1417import { AuthorizationDataServiceStub } from '@dspace/core/testing/authorization-service.stub' ;
18+ import { provideMockStore } from '@ngrx/store/testing' ;
1519import { TranslateModule } from '@ngx-translate/core' ;
1620import { of } from 'rxjs' ;
1721
1822import { environment } from '../../environments/environment.test' ;
1923import { FooterComponent } from './footer.component' ;
20- import { provideMockStore } from '@ngrx/store/testing' ;
21- import { APP_DATA_SERVICES_MAP } from '@dspace/core/data-services-map-type' ;
22- import { ResourceType } from '@dspace/core/shared/resource-type' ;
23- import { LocaleService } from '@dspace/core/locale/locale.service' ;
2424
2525let comp : FooterComponent ;
2626let fixture : ComponentFixture < FooterComponent > ;
@@ -29,8 +29,8 @@ let localeService: any;
2929const TEST_MODEL = new ResourceType ( 'testmodel' ) ;
3030const languageList = [ 'en;q=1' , 'de;q=0.8' ] ;
3131const mockLocaleService = jasmine . createSpyObj ( 'LocaleService' , {
32- getCurrentLanguageCode : jasmine . createSpy ( 'getCurrentLanguageCode' ) ,
33- getLanguageCodeList : of ( languageList ) ,
32+ getCurrentLanguageCode : jasmine . createSpy ( 'getCurrentLanguageCode' ) ,
33+ getLanguageCodeList : of ( languageList ) ,
3434} ) ;
3535
3636let notifyInfoService = {
@@ -52,8 +52,8 @@ describe('Footer component', () => {
5252 provideMockStore ( {
5353 initialState : {
5454 index : {
55- }
56- }
55+ } ,
56+ } ,
5757 } ) ,
5858 { provide : LocaleService , useValue : mockLocaleService } ,
5959 { provide : AuthorizationDataService , useClass : AuthorizationDataServiceStub } ,
0 commit comments