aboutsummaryrefslogtreecommitdiffstats
path: root/src/k8splugin/api/healthcheckhandler_test.go
diff options
context:
space:
mode:
authorBin Yang <bin.yang@windriver.com>2019-07-16 00:52:24 +0000
committerGerrit Code Review <gerrit@onap.org>2019-07-16 00:52:24 +0000
commitba4a7991e10172a31cec65ae5c9ad11cbb1b806b (patch)
treec4e14b0cc27dece033e672833ec2040120ef77cb /src/k8splugin/api/healthcheckhandler_test.go
parent70f54e61d7081507760a8d876e13b2088f9ff58f (diff)
parent6b911a5168a72e8659309db7349750cdec6eb8d2 (diff)
Merge "Move connectionhandler.go into api package"
Diffstat (limited to 'src/k8splugin/api/healthcheckhandler_test.go')
-rw-r--r--src/k8splugin/api/healthcheckhandler_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/k8splugin/api/healthcheckhandler_test.go b/src/k8splugin/api/healthcheckhandler_test.go
index d96bb3cd..ab9322fd 100644
--- a/src/k8splugin/api/healthcheckhandler_test.go
+++ b/src/k8splugin/api/healthcheckhandler_test.go
@@ -35,7 +35,7 @@ func TestHealthCheckHandler(t *testing.T) {
Err: nil,
}
request := httptest.NewRequest("GET", "/v1/healthcheck", nil)
- resp := executeRequest(request, NewRouter(nil, nil, nil, nil, nil))
+ resp := executeRequest(request, NewRouter(nil, nil, nil, nil, nil, nil))
//Check returned code
if resp.StatusCode != http.StatusOK {
@@ -48,7 +48,7 @@ func TestHealthCheckHandler(t *testing.T) {
Err: pkgerrors.New("Runtime Error in DB"),
}
request := httptest.NewRequest("GET", "/v1/healthcheck", nil)
- resp := executeRequest(request, NewRouter(nil, nil, nil, nil, nil))
+ resp := executeRequest(request, NewRouter(nil, nil, nil, nil, nil, nil))
//Check returned code
if resp.StatusCode != http.StatusInternalServerError {