From 0e723c5b97637acd4d6e58df305ff9250a504510 Mon Sep 17 00:00:00 2001 From: Alex <alexellis2@gmail.com> Date: Wed, 23 Aug 2017 21:13:38 +0100 Subject: [PATCH] watchdog - Patch environmental header test Signed-off-by: Alex <alexellis2@gmail.com> --- watchdog/requesthandler_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/watchdog/requesthandler_test.go b/watchdog/requesthandler_test.go index 58ace419..3a1cbd6e 100644 --- a/watchdog/requesthandler_test.go +++ b/watchdog/requesthandler_test.go @@ -47,8 +47,8 @@ func TestHandler_HasCustomHeaderInFunction_WithCgi_Mode(t *testing.T) { read, _ := ioutil.ReadAll(rr.Body) val := string(read) - if strings.Index(val, "Http_Custom-Header") == -1 { - t.Errorf("'env' should printed: Http_Custom-Header, got: %s\n", val) + if strings.Index(val, "Http_Custom_Header") == -1 { + t.Errorf("'env' should printed: Http_Custom_Header, got: %s\n", val) } @@ -83,8 +83,8 @@ func TestHandler_DoesntHaveCustomHeaderInFunction_WithoutCgi_Mode(t *testing.T) read, _ := ioutil.ReadAll(rr.Body) val := string(read) - if strings.Index(val, "Http_Custom-Header") != -1 { - t.Errorf("'env' should not have printed: Http_Custom-Header, got: %s\n", val) + if strings.Index(val, "Http_Custom_Header") != -1 { + t.Errorf("'env' should not have printed: Http_Custom_Header, got: %s\n", val) } -- GitLab