Skip to content

Commit e93f9cd

Browse files
committed
NPA-4689 Fix Sandbox
1 parent d1c659c commit e93f9cd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

sandbox/api/constants.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@
6969
# GET QuestionnaireResponse
7070
GET_QUESTIONNAIRE_RESPONSE_DIRECTORY = "./api/examples/GET_QuestionnaireResponse/"
7171
GET_QUESTIONNAIRE_RESPONSE__SUCCESS = f"{GET_QUESTIONNAIRE_RESPONSE_DIRECTORY}success.yaml"
72-
GET_QUESTIONNAIRE_RESPONSE__INVALID = f"{GET_QUESTIONNAIRE_RESPONSE_DIRECTORY}errors/invalid-reference-code.yaml"
73-
GET_QUESTIONNAIRE_RESPONSE__MISSING = f"{GET_QUESTIONNAIRE_RESPONSE_DIRECTORY}errors/missing-reference-code.yaml"
72+
GET_QUESTIONNAIRE_RESPONSE__INVALID = f"{GET_QUESTIONNAIRE_RESPONSE_DIRECTORY}errors/invalid_reference_code.yaml"
73+
GET_QUESTIONNAIRE_RESPONSE__MISSING = f"{GET_QUESTIONNAIRE_RESPONSE_DIRECTORY}errors/missing_reference_code.yaml"
7474
GET_QUESTIONNAIRE_RESPONSE__NOT_FOUND = (
7575
f"{GET_QUESTIONNAIRE_RESPONSE_DIRECTORY}errors/questionnaire_response_not_found.yaml"
7676
)

sandbox/api/tests/test_get_questionnaire_response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
),
1717
(
1818
"referenceCode=INVALID",
19-
"./api/examples/GET_QuestionnaireResponse/errors/invalid-reference-code.yaml",
19+
"./api/examples/GET_QuestionnaireResponse/errors/invalid_reference_code.yaml",
2020
400,
2121
),
2222
(
2323
"referenceCode=",
24-
"./api/examples/GET_QuestionnaireResponse/errors/missing-reference-code.yaml",
24+
"./api/examples/GET_QuestionnaireResponse/errors/missing_reference_code.yaml",
2525
404,
2626
),
2727
(

0 commit comments

Comments
 (0)