Skip to content

Commit

Permalink
Remove patient id from ResultMock
Browse files Browse the repository at this point in the history
  • Loading branch information
saquino0827 committed Jan 25, 2024
1 parent 3815b92 commit 08b83cb
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,10 @@ import gov.hhs.cdc.trustedintermediary.etor.results.Result
class ResultMock<T> implements Result<T> {

private String fhirResourceId
private String patientId
private T underlyingResult

ResultMock(String fhirResourceId, String patientId, T underlyingOrders) {
ResultMock(String fhirResourceId, T underlyingOrders) {
this.fhirResourceId = fhirResourceId
this.patientId = patientId
this.underlyingResult = underlyingOrders
}

Expand All @@ -26,9 +24,4 @@ class ResultMock<T> implements Result<T> {
String getFhirResourceId() {
return fhirResourceId
}

@Override
String getPatientId() {
return patientId
}
}

0 comments on commit 08b83cb

Please sign in to comment.