diff options
author | adheli.tavares <adheli.tavares@est.tech> | 2024-02-21 15:29:36 +0000 |
---|---|---|
committer | adheli.tavares <adheli.tavares@est.tech> | 2024-02-21 15:31:27 +0000 |
commit | 8361cb0e3663a610a46bc5ea8a0cc783ade26f89 (patch) | |
tree | 3a69b393e9eda3c7b66e0c446c2bab60f53ad523 /csit/resources/tests/drools-applications-test.robot | |
parent | dd836dc2d2bd379fba19b395c912d32f1bc7ee38 (diff) |
Fix config files removing hibernate deprecated properties and
changing robot deprecated commands in test files
Issue-ID: POLICY-4929
Change-Id: I09147335700fdd2c27557b533ca4fb88967672a4
Signed-off-by: adheli.tavares <adheli.tavares@est.tech>
Diffstat (limited to 'csit/resources/tests/drools-applications-test.robot')
-rw-r--r-- | csit/resources/tests/drools-applications-test.robot | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/csit/resources/tests/drools-applications-test.robot b/csit/resources/tests/drools-applications-test.robot index a43f1422..d9ade3b7 100644 --- a/csit/resources/tests/drools-applications-test.robot +++ b/csit/resources/tests/drools-applications-test.robot @@ -154,7 +154,7 @@ PeformGetRequest ${headers}= Create Dictionary Accept=application/json Content-Type=application/json ${resp}= GET On Session policy ${url} headers=${headers} expected_status=${expectedstatus} Log Received response from policy ${resp.text} - [return] ${resp} + RETURN ${resp} PerformPostRequest [Arguments] ${url} ${params} ${domain} ${jsonfile} ${filepath} ${contenttype} ${expectedstatus} @@ -165,11 +165,11 @@ PerformPostRequest ${headers}= Create Dictionary Accept=application/${contenttype} Content-Type=application/${contenttype} ${resp}= POST On Session policy ${url} params=${params} data=${postjson} headers=${headers} expected_status=${expectedstatus} Log Received response from policy ${resp.text} - [return] ${resp} + RETURN ${resp} OnSet [Arguments] ${file} ${data}= Get File ${file} ${resp}= Run Process ${CURDIR}/kafka_producer.py unauthenticated.dcae_cl_output ${data} ${KAFKA_IP} Log Response from kafka ${resp.stdout} - [Return] ${resp.stdout} + RETURN ${resp.stdout} |