summaryrefslogtreecommitdiffstats
path: root/intentanalysis/src/test/resources/intentdb-test-data.sql
diff options
context:
space:
mode:
authorxudan16 <xudan16@huawei.com>2023-05-08 16:15:05 +0800
committerxudan16 <xudan16@huawei.com>2023-05-08 16:34:05 +0800
commitce59f8d48ee369b81d67666601cb297f7688d683 (patch)
tree9cd74c085f4368cadd2bd63c59404bfc982ad0c9 /intentanalysis/src/test/resources/intentdb-test-data.sql
parentb22a18a41ae844454b0e840b4d4cb01d1fffbca2 (diff)
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 <xudan16@huawei.com> Change-Id: I5cf018248a6aba320e547c4a566ddbfab4781dae
Diffstat (limited to 'intentanalysis/src/test/resources/intentdb-test-data.sql')
-rw-r--r--intentanalysis/src/test/resources/intentdb-test-data.sql6
1 files changed, 3 insertions, 3 deletions
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');