From 09a28e16ccb6a2b374f1102f5028618eb359015d Mon Sep 17 00:00:00 2001 From: Jimmi Dyson Date: Sat, 29 Oct 2016 09:30:47 +0100 Subject: [PATCH] Update dashboard integration test wrong port error message --- test/integration/addons_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/addons_test.go b/test/integration/addons_test.go index d17d4fe0e..b8d485210 100644 --- a/test/integration/addons_test.go +++ b/test/integration/addons_test.go @@ -95,7 +95,7 @@ func TestDashboard(t *testing.T) { } if svc.Spec.Ports[0].NodePort != 30000 { - return fmt.Errorf("Dashboard is not exposed on port %d", svc.Spec.Ports[0].NodePort) + return fmt.Errorf("Dashboard is exposed on wrong port, expected 30000, actual %d", svc.Spec.Ports[0].NodePort) } return nil -- GitLab