diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f61677c..196a254 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: Go Build +name: Build on: push: diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 150a0f4..f971688 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -1,4 +1,4 @@ -name: Go Security +name: Security on: push: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a892801..618eb5f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,4 +1,4 @@ -name: Go Test +name: Test on: push: diff --git a/application/app_test.go b/application/app_test.go index a90bdca..895b59c 100644 --- a/application/app_test.go +++ b/application/app_test.go @@ -67,12 +67,6 @@ func TestAppRouter(t *testing.T) { if router.Config().WriteBufferSize <= 0 { t.Error("Router's WriteBufferSize should be more than 0") } - if router.Config().ServerHeader != "" { - t.Error("Router's ServerHeader should be empty") - } - if router.Config().ProxyHeader != "" { - t.Error("Router's ProxyHeader should be empty") - } setup() }