summaryrefslogtreecommitdiffstats
path: root/csit
diff options
context:
space:
mode:
authorPriyank Maheshwari <priyank.maheshwari@est.tech>2024-01-25 13:38:02 +0000
committerGerrit Code Review <gerrit@onap.org>2024-01-25 13:38:02 +0000
commit52a7c2b2685ad63154e347782f0ff5c16f87ef53 (patch)
tree8516a97ac7845212095536b6ace97f9ca61b54a4 /csit
parent26804e49980bc1d3139b09b7934e94a2ea1e7743 (diff)
parent7a397ca71ce9aacbddc64b87813c1c5f8fc8bd9b (diff)
Merge "Omitting the basic auth header in healthcheck test"
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 b1cf102fe5..e010fdd7c8 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