diff options
author | Joanna Jeremicz <joanna.jeremicz@nokia.com> | 2021-03-19 09:04:09 +0100 |
---|---|---|
committer | Joanna Jeremicz <joanna.jeremicz@nokia.com> | 2021-03-19 09:16:04 +0100 |
commit | 1acefd84302a7ffa1981a270a7a8a2f17f71c271 (patch) | |
tree | 2317582acd0922a0283cf82e727800aebcef8f02 /tests/oom-platform-cert-service/certservice/resources | |
parent | 21e1b2d277f9db79b1495d383fc6147b12db57c3 (diff) |
Fix Cert-service tests
Adapt FOR loop syntax
Issue-ID: SDNC-1477
Signed-off-by: Joanna Jeremicz <joanna.jeremicz@nokia.com>
Change-Id: I924d7d6ca63c698ac7fa9414eb880df2bd4e1d36
Diffstat (limited to 'tests/oom-platform-cert-service/certservice/resources')
-rw-r--r-- | tests/oom-platform-cert-service/certservice/resources/cert-service-keywords.robot | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/oom-platform-cert-service/certservice/resources/cert-service-keywords.robot b/tests/oom-platform-cert-service/certservice/resources/cert-service-keywords.robot index fea210b5..dd5728cc 100644 --- a/tests/oom-platform-cert-service/certservice/resources/cert-service-keywords.robot +++ b/tests/oom-platform-cert-service/certservice/resources/cert-service-keywords.robot @@ -63,9 +63,10 @@ Check Message Recieved On Success List Should Contain Certificates [Documentation] Verify if list contains certificates [Arguments] @{list} - :FOR ${content} IN @{list} - \ Should Contain ${content} BEGIN CERTIFICATE - \ Should Contain ${content} END CERTIFICATE + FOR ${content} IN @{list} + Should Contain ${content} BEGIN CERTIFICATE + Should Contain ${content} END CERTIFICATE + END Send Get Request with Header And Expect Error [Documentation] Send request to passed url and validate received response |