From e45ed2d5b942e4306ffeab0375642ea58718f835 Mon Sep 17 00:00:00 2001 From: Jordan Liggitt Date: Tue, 3 Oct 2017 16:44:38 -0400 Subject: [PATCH] fix typo in health check url --- test/integration/auth/rbac_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/auth/rbac_test.go b/test/integration/auth/rbac_test.go index f1bf44c3470..65e25424f59 100644 --- a/test/integration/auth/rbac_test.go +++ b/test/integration/auth/rbac_test.go @@ -553,9 +553,9 @@ func TestBootstrapping(t *testing.T) { t.Errorf("missing cluster-admin: %v", clusterRoles) - healthBytes, err := clientset.Discovery().RESTClient().Get().AbsPath("/healthz/poststarthooks/rbac/bootstrap-roles").DoRaw() + healthBytes, err := clientset.Discovery().RESTClient().Get().AbsPath("/healthz/poststarthook/rbac/bootstrap-roles").DoRaw() if err != nil { t.Error(err) } - t.Errorf("expected %v, got %v", "asdf", string(healthBytes)) + t.Errorf("error bootstrapping roles: %s", string(healthBytes)) }