Skip to content

Commit

Permalink
Rename prescription search response file
Browse files Browse the repository at this point in the history
  • Loading branch information
kris-szlapa committed Sep 6, 2024
1 parent ede185a commit ff94307
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sandbox-spine-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {AxiosResponse} from "axios"
import {SpineClient} from "./spine-client"
import {StatusCheckResponse} from "./status"
import CLINICAL_CONTENT_VIEW_SANDBOX_RESPONSE from "./resources/clinical_content_view_sandbox"
import PRESCRIPTION_SEARCH_RESPONSE from "./resources/prescription_search_response"
import PRESCRIPTION_SEARCH_SANDBOX_RESPONSE from "./resources/prescription_search_sandbox"

export class SandboxSpineClient implements SpineClient {
async getStatus(): Promise<StatusCheckResponse> {
Expand Down Expand Up @@ -34,7 +34,7 @@ export class SandboxSpineClient implements SpineClient {

async prescriptionSearch(): Promise<AxiosResponse> {
const response: AxiosResponse = {
data: PRESCRIPTION_SEARCH_RESPONSE,
data: PRESCRIPTION_SEARCH_SANDBOX_RESPONSE,
status: 200,
statusText: "OK"
} as unknown as AxiosResponse
Expand Down

0 comments on commit ff94307

Please sign in to comment.