Skip to content
Snippets Groups Projects
Commit 26b82bed authored by Art Lowel's avatar Art Lowel
Browse files

accidentally left focus on a unit test

parent 101921ce
No related branches found
No related tags found
No related merge requests found
import { IDToUUIDSerializer } from './it-to-uuid-serializer';
fdescribe('IDToUUIDSerializer', () => {
describe('IDToUUIDSerializer', () => {
let serializer: IDToUUIDSerializer;
const prefix = 'test-prefix';
......
......@@ -30,7 +30,7 @@ export class DSOResponseParsingService extends BaseResponseParsingService implem
const processRequestDTO = this.process<NormalizedObject,ResourceType>(data.payload, request.href);
let objectList = processRequestDTO;
if (hasNoValue(processRequestDTO)) {
return new DSOSuccessResponse(undefined, data.statusCode, undefined)
return new DSOSuccessResponse([], data.statusCode, undefined)
}
if (hasValue(processRequestDTO.page)) {
objectList = processRequestDTO.page;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment