diff options
author | matthew-mcneilly <matthew.mcneilly@est.tech> | 2021-05-12 14:54:27 +0100 |
---|---|---|
committer | matthew-mcneilly <matthew.mcneilly@est.tech> | 2021-05-12 17:27:51 +0100 |
commit | de929b31c7eaeb5f8769028e4e80f265afadef39 (patch) | |
tree | 8eecdc6b3f88b1a692ae6bcc0462653aeec2ad43 /tests/sdc/nightly | |
parent | 5bca867ac1179b366c1d9a0765d88e2cfc197acd (diff) |
[CSIT] Fix SDC CSIT Run Errors/Warnings & Path Correction
Use of old for loop syntax causing failure in SDC CSIT
"Support for the old for loop syntax has been removed.
Replace ': FOR' with 'FOR', end the loop with 'END',
and remove escaping backslashes."
Testplan.txt path pointing to sanity instead of uiSanity
causing wrong testplan to be executed.
Fix for sdc-helm-validator warning
"Verify That Sdc Helm Validator Responds With Error
For Chart Valid... [ WARN ] Keyword 'RequestsLibrary.Post
Request' is deprecated. Please use `POST On Session` instead."
Issue-ID: SDC-3573
Signed-off-by: matthew-mcneilly <matthew.mcneilly@est.tech>
Change-Id: Idff668b05330eaf685ab519ee2a0d7cd4fed7ceb
Diffstat (limited to 'tests/sdc/nightly')
-rw-r--r-- | tests/sdc/nightly/test1.robot | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/sdc/nightly/test1.robot b/tests/sdc/nightly/test1.robot index 2b92be74..6567b51e 100644 --- a/tests/sdc/nightly/test1.robot +++ b/tests/sdc/nightly/test1.robot @@ -12,5 +12,6 @@ Get Requests health check ok ${resp}= Get Request sdc-fe /sdc1/rest/healthCheck headers=&{headers} Should Be Equal As Strings ${resp.status_code} 200 @{ITEMS}= Copy List ${resp.json()['componentsInfo']} - : FOR ${ELEMENT} IN @{ITEMS} - \ Log ${ELEMENT['healthCheckComponent']} ${ELEMENT['healthCheckStatus']} + FOR ${ELEMENT} IN @{ITEMS} + Log ${ELEMENT['healthCheckComponent']} ${ELEMENT['healthCheckStatus']} + END |