aboutsummaryrefslogtreecommitdiffstats
path: root/csit
diff options
context:
space:
mode:
authorwaqas.ikram <waqas.ikram@est.tech>2024-01-25 11:36:16 +0000
committerwaqas.ikram <waqas.ikram@est.tech>2024-01-25 13:22:54 +0000
commit7a397ca71ce9aacbddc64b87813c1c5f8fc8bd9b (patch)
tree7fcf6f46e61cfe44f0cd9fe1b1bb340acfa40e1d /csit
parentad5d1fccb4e07ac0260ca4a6a0f7034861e631ad (diff)
Omitting the basic auth header in healthcheck test
as it is not required and adding v3 to uri of api-docs Issue-ID: CPS-2045 Change-Id: If229bbd46a5c5187ddac242f8bfda00d5c951995 Signed-off-by: waqas.ikram <waqas.ikram@est.tech>
Diffstat (limited to 'csit')
-rw-r--r--csit/tests/actuator/actuator.robot4
1 files changed, 1 insertions, 3 deletions
diff --git a/csit/tests/actuator/actuator.robot b/csit/tests/actuator/actuator.robot
index b1cf102fe..e010fdd7c 100644
--- a/csit/tests/actuator/actuator.robot
+++ b/csit/tests/actuator/actuator.robot
@@ -27,7 +27,6 @@ Library RequestsLibrary
Suite Setup Create Session CPS_URL http://${CPS_CORE_HOST}:${CPS_CORE_PORT}
*** Variables ***
-${auth} Basic Y3BzdXNlcjpjcHNyMGNrcyE=
${actuatorPath} /actuator/health
${swaggerPath} /swagger-ui/index.html
@@ -43,5 +42,4 @@ Test CPS Enhanced Healthcheck
Test CPS Swagger UI
[Documentation] Runs health check for CPS Swagger UI. If the CPS Swagger URL is accessible, status should be 200.
- ${headers}= Create Dictionary Authorization=${auth}
- GET On Session CPS_URL ${swaggerPath} headers=${headers} expected_status=200
+ GET On Session CPS_URL ${swaggerPath} expected_status=200