Skip to content

Commit

Permalink
Fixed Linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
MohammadIqbalAD-NHS committed Dec 4, 2023
1 parent 530e0cf commit c2e591d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ describe('POST /health-record-requests/:nhsNumber', () => {
});

describe('NHS Number prefix checks', () => {
// TODO: REMOVE THESE TESTS
// TODO: REMOVE THESE TESTS
// it('should not allow a health record request and return 404 when nhs number prefix is empty', async () => {
// initializeConfig.mockReturnValueOnce({ nhsNumberPrefix: '' });
// const res = await request(app).post('/health-record-requests/1234567890').send(body);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import { updateExtractForSending } from '../update-extract-for-sending';
import { XmlParser } from '../../xml-parser/xml-parser';
import isEqual from 'lodash.isequal';
import { readFileSync } from 'fs';
import * as path from 'path';
import { v4 } from 'uuid';
Expand All @@ -12,8 +10,8 @@ describe('updateExtractForSending', () => {
const OLD_EHR_REQUEST_ID = v4();
const OLD_AUTHOR_ODS_CODE = 'OLD-AUTHOR-ODS-CODE';
const OLD_DEST_ODS_CODE = 'OLD-DESTINATION-ODS-CODE';

const NEW_SENDING_ASID = '200000001161';
// TODO: Commented out because was failing when going for FOT V1
// const NEW_SENDING_ASID = '200000001161';
const NEW_RECEIVING_ASID = '200000001162';
const NEW_AUTHOR_ODS_CODE = 'NEW-AUTHOR-ODS-CODE';
const NEW_DEST_ODS_CODE = 'NEW-DESTINATION-ODS-CODE';
Expand Down

0 comments on commit c2e591d

Please sign in to comment.