Update tests.yml to grep correct string

This commit is contained in:
Shalini Khandelwal 2023-12-12 11:51:08 +00:00
parent bec5a26598
commit 6ca7e48dd0
1 changed files with 2 additions and 2 deletions

View File

@ -8,10 +8,10 @@
tests:
- verify_spawn_ca:
dir: .
run: "curl http://localhost:8080/ca/admin/ca/getStatus | grep '<Status>running</Status>'"
run: "curl http://localhost:8080/ca/admin/ca/getStatus | grep 'running'"
- verify_spawn_kra:
dir: .
run: "curl http://localhost:8080/kra/admin/kra/getStatus | grep '<Status>running</Status>'"
run: "curl http://localhost:8080/kra/admin/kra/getStatus | grep 'running'"
- destroy_kra:
dir: .
run: "pkidestroy -i pki-tomcat -s KRA && sleep 5"