Skip to content

Commit 9b2bcd0

Browse files
[DSC-1482] - Fix spaces
1 parent 0232370 commit 9b2bcd0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/app/item-page/full/field-components/file-section/full-file-section.component.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { APP_CONFIG } from 'src/config/app-config.interface';
2222
import { environment } from 'src/environments/environment';
2323
import { UUIDService } from '../../../../core/shared/uuid.service';
2424
import { getMockUUIDService } from '../../../../shared/mocks/uuid.service.mock';
25-
import {Item} from '../../../../core/shared/item.model';
25+
import { Item } from '../../../../core/shared/item.model';
2626
import { AuthorizationDataService } from '../../../../core/data/feature-authorization/authorization-data.service';
2727

2828
describe('FullFileSectionComponent', () => {
@@ -111,6 +111,7 @@ describe('FullFileSectionComponent', () => {
111111
authorizedDataService.isAuthorized.and.returnValue(observableOf(false));
112112
comp.canDownload(mockBitstream).subscribe(canDownload => expect(canDownload).toBeFalse());
113113
}));
114+
114115
it('canDownload should return an observable with true value, if user is authorized to download bitstream', waitForAsync(() => {
115116
authorizedDataService.isAuthorized.and.returnValue(observableOf(true));
116117
comp.canDownload(mockBitstream).subscribe(canDownload => expect(canDownload).toBeTrue());

0 commit comments

Comments
 (0)