Skip to content

Commit c473a89

Browse files
committed
NPA-4693 Fix Sandbox Response
1 parent 235a11a commit c473a89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sandbox/api/get_questionnaire_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def get_questionnaire_response_response() -> Union[dict, tuple]:
2929
elif reference_code == "INVALID":
3030
return generate_response_from_example(GET_QUESTIONNAIRE_RESPONSE__INVALID, 400)
3131
elif reference_code == "" or reference_code is None:
32-
return generate_response_from_example(GET_QUESTIONNAIRE_RESPONSE__MISSING, 404)
32+
return generate_response_from_example(GET_QUESTIONNAIRE_RESPONSE__MISSING, 400)
3333
elif reference_code == "ABC123XY":
3434
return generate_response_from_example(GET_QUESTIONNAIRE_RESPONSE__NOT_FOUND, 404)
3535
else:

0 commit comments

Comments
 (0)