mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 15:33:04 +00:00
ESLint: fix dangling commas
This commit is contained in:
@@ -45,7 +45,7 @@ describe('SubmissionSectionSherpaPoliciesComponent', () => {
|
||||
errorsToShow: [],
|
||||
serverValidationErrors: [],
|
||||
isLoading: false,
|
||||
isValid: true
|
||||
isValid: true,
|
||||
};
|
||||
|
||||
describe('SubmissionSectionSherpaPoliciesComponent', () => {
|
||||
@@ -58,11 +58,11 @@ describe('SubmissionSectionSherpaPoliciesComponent', () => {
|
||||
TranslateModule.forRoot({
|
||||
loader: {
|
||||
provide: TranslateLoader,
|
||||
useClass: TranslateLoaderMock
|
||||
}
|
||||
useClass: TranslateLoaderMock,
|
||||
},
|
||||
}),
|
||||
NgbCollapseModule,
|
||||
SharedModule
|
||||
SharedModule,
|
||||
],
|
||||
declarations: [SubmissionSectionSherpaPoliciesComponent],
|
||||
providers: [
|
||||
@@ -72,7 +72,7 @@ describe('SubmissionSectionSherpaPoliciesComponent', () => {
|
||||
{ provide: Store, useValue: storeStub },
|
||||
{ provide: 'sectionDataProvider', useValue: sectionData },
|
||||
{ provide: 'submissionIdProvider', useValue: '1508' },
|
||||
]
|
||||
],
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
Reference in New Issue
Block a user