Skip to content

Commit 7b1f264

Browse files
committed
[DURACOM-248] Fix lint
1 parent a8fcfa2 commit 7b1f264

7 files changed

Lines changed: 8 additions & 7 deletions

File tree

src/app/core/auth/auth.service.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ import {
1212
Store,
1313
StoreModule,
1414
} from '@ngrx/store';
15-
import { REQUEST } from '../../../express.tokens';
1615
import { TranslateService } from '@ngx-translate/core';
1716
import { cold } from 'jasmine-marbles';
1817
import {
1918
Observable,
2019
of as observableOf,
2120
} from 'rxjs';
2221

22+
import { REQUEST } from '../../../express.tokens';
2323
import { AppState } from '../../app.reducer';
2424
import { getMockTranslateService } from '../../shared/mocks/translate.service.mock';
2525
import { NotificationsService } from '../../shared/notifications/notifications.service';

src/app/core/forward-client-ip/forward-client-ip.interceptor.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import {
44
HttpTestingController,
55
} from '@angular/common/http/testing';
66
import { TestBed } from '@angular/core/testing';
7-
import { REQUEST } from '../../../express.tokens';
87

8+
import { REQUEST } from '../../../express.tokens';
99
import { DspaceRestService } from '../dspace-rest/dspace-rest.service';
1010
import { ForwardClientIpInterceptor } from './forward-client-ip.interceptor';
1111

src/app/core/services/cookie.service.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import {
22
TestBed,
33
waitForAsync,
44
} from '@angular/core/testing';
5-
import { REQUEST } from '../../../express.tokens';
65

6+
import { REQUEST } from '../../../express.tokens';
77
import {
88
CookieService,
99
ICookieService,

src/app/core/services/server-response.service.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ import {
33
Injectable,
44
Optional,
55
} from '@angular/core';
6-
import { RESPONSE } from '../../../express.tokens';
76
import { Response } from 'express';
87

8+
import { RESPONSE } from '../../../express.tokens';
9+
910
/**
1011
* Service responsible to provide method to manage the response object
1112
*/

src/app/entity-groups/research-entities/submission/item-list-elements/person/person-search-result-list-submission-element.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ import {
1313
import { By } from '@angular/platform-browser';
1414
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
1515
import { Store } from '@ngrx/store';
16-
import { REQUEST } from '../../../../../../express.tokens';
1716
import { TranslateService } from '@ngx-translate/core';
1817
import {
1918
Observable,
2019
of as observableOf,
2120
} from 'rxjs';
2221

2322
import { APP_CONFIG } from '../../../../../../config/app-config.interface';
23+
import { REQUEST } from '../../../../../../express.tokens';
2424
import { AuthService } from '../../../../../core/auth/auth.service';
2525
import { RemoteDataBuildService } from '../../../../../core/cache/builders/remote-data-build.service';
2626
import { ObjectCacheService } from '../../../../../core/cache/object-cache.service';

src/app/item-page/edit-item-page/item-relationships/edit-relationship-list/edit-relationship-list.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import {
1313
Router,
1414
} from '@angular/router';
1515
import { provideMockStore } from '@ngrx/store/testing';
16-
import { REQUEST } from '../../../../../express.tokens';
1716
import { TranslateModule } from '@ngx-translate/core';
1817
import { of as observableOf } from 'rxjs';
1918
import { AuthRequestService } from 'src/app/core/auth/auth-request.service';
@@ -23,6 +22,7 @@ import { ActivatedRouteStub } from 'src/app/shared/testing/active-router.stub';
2322
import { AuthRequestServiceStub } from 'src/app/shared/testing/auth-request-service.stub';
2423

2524
import { APP_CONFIG } from '../../../../../config/app-config.interface';
25+
import { REQUEST } from '../../../../../express.tokens';
2626
import { LinkService } from '../../../../core/cache/builders/link.service';
2727
import { ConfigurationDataService } from '../../../../core/data/configuration-data.service';
2828
import { FieldChangeType } from '../../../../core/data/object-updates/field-change-type.model';

src/app/shared/object-collection/shared/listable-object/listable-object-component-loader.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import {
1212
import { By } from '@angular/platform-browser';
1313
import { ActivatedRoute } from '@angular/router';
1414
import { provideMockStore } from '@ngrx/store/testing';
15-
import { REQUEST } from '../../../../../express.tokens';
1615
import { TranslateModule } from '@ngx-translate/core';
1716
import { of } from 'rxjs';
1817
import { AuthRequestService } from 'src/app/core/auth/auth-request.service';
@@ -27,6 +26,7 @@ import {
2726
APP_CONFIG,
2827
APP_DATA_SERVICES_MAP,
2928
} from '../../../../../config/app-config.interface';
29+
import { REQUEST } from '../../../../../express.tokens';
3030
import { Context } from '../../../../core/shared/context.model';
3131
import { GenericConstructor } from '../../../../core/shared/generic-constructor';
3232
import { ListableModule } from '../../../../core/shared/listable.module';

0 commit comments

Comments
 (0)