aboutsummaryrefslogtreecommitdiffstats
path: root/api/register-handlers_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/register-handlers_test.go')
-rw-r--r--api/register-handlers_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/api/register-handlers_test.go b/api/register-handlers_test.go
index 801cb0e..f67c1f5 100644
--- a/api/register-handlers_test.go
+++ b/api/register-handlers_test.go
@@ -43,10 +43,10 @@ func TestRegisterHandlers(t *testing.T) {
handler http.HandlerFunc
statusCode int
}{
- {"/policy/pdpx/v1/decision", decision.OpaDecision, http.StatusUnauthorized},
+ {"/policy/pdpo/v1/decision", decision.OpaDecision, http.StatusUnauthorized},
{"/opa/bundles/", bundleserver.GetBundle, http.StatusInternalServerError},
{"/ready", readinessProbe, http.StatusOK},
- {"/policy/pdpx/v1/healthcheck", healthcheck.HealthCheckHandler, http.StatusUnauthorized},
+ {"/policy/pdpo/v1/healthcheck", healthcheck.HealthCheckHandler, http.StatusUnauthorized},
}
for _, tt := range tests {