From ce59f8d48ee369b81d67666601cb297f7688d683 Mon Sep 17 00:00:00 2001 From: xudan16 Date: Mon, 8 May 2023 16:15:05 +0800 Subject: Change all fulfilment/Fulfilment to fulfillment/Fulfillment In the previous patch, it has been changed to use fulfillment/Fulfillment. However there are still some missing. Change all to be the new word to keep it unify and avoid the confusion. Issue-ID: USECASEUI-785 Signed-off-by: xudan16 Change-Id: I5cf018248a6aba320e547c4a566ddbfab4781dae --- intentanalysis/src/test/resources/intentdb-test-data.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'intentanalysis/src/test/resources/intentdb-test-data.sql') diff --git a/intentanalysis/src/test/resources/intentdb-test-data.sql b/intentanalysis/src/test/resources/intentdb-test-data.sql index 4a1f120..1105411 100644 --- a/intentanalysis/src/test/resources/intentdb-test-data.sql +++ b/intentanalysis/src/test/resources/intentdb-test-data.sql @@ -94,11 +94,11 @@ MERGE INTO context (context_id, context_name, parent_id) KEY (context_id) values ('72f6c546-f234-4be5-a2fe-5740139e20cb', 'intentContextName', 'intentId2'); -- ---------------------------- --- Records of fulfilment_info +-- Records of fulfillment_info -- ---------------------------- -MERGE INTO fulfilment_info (fulfilment_info_id, fulfilment_info_status, not_fulfilled_state, not_fulfilled_reason) KEY (fulfilment_info_id) +MERGE INTO fulfillment_info (fulfillment_info_id, fulfillment_info_status, not_fulfilled_state, not_fulfilled_reason) KEY (fulfillment_info_id) values ('intentId1', 'NOT_FULFILLED', 'COMPLIANT', 'NotFulfilledReason'); -MERGE INTO fulfilment_info (fulfilment_info_id, fulfilment_info_status, not_fulfilled_state, not_fulfilled_reason) KEY (fulfilment_info_id) +MERGE INTO fulfillment_info (fulfillment_info_id, fulfillment_info_status, not_fulfilled_state, not_fulfilled_reason) KEY (fulfillment_info_id) values ('intentId2', 'NOT_FULFILLED', 'COMPLIANT', 'NotFulfilledReason'); -- cgit