Skip to content

Commit

Permalink
Use the correct port
Browse files Browse the repository at this point in the history
  • Loading branch information
bradsawadye committed Apr 16, 2024
1 parent 688cc21 commit b1b6ac3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/cucumber/features/steps/recipesSteps.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Then("the patient data in the Jempi client registry", async function () {

PatientID = patientResource.response.location.split('/')[1];

const patient = await sendRequest(`http://${HOST}:3003/fhir/links/Patient/${PatientID}`, 'GET');
const patient = await sendRequest(`http://${HOST}:5001/fhir/links/Patient/${PatientID}`, 'GET');

expect(patient.data.link.filter(pat => pat.other.reference.match(`Patient/${PatientID}`)).length).to.equal(1);
});
Expand Down

0 comments on commit b1b6ac3

Please sign in to comment.