diff options
Diffstat (limited to 'service/http/config_test.go')
-rw-r--r-- | service/http/config_test.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/service/http/config_test.go b/service/http/config_test.go index 662939f3..823efb32 100644 --- a/service/http/config_test.go +++ b/service/http/config_test.go @@ -31,7 +31,6 @@ func Test_Config_Hydrate_Error2(t *testing.T) { func Test_Config_Valid(t *testing.T) { cfg := &Config{ - Enable: true, Address: ":8080", MaxRequest: 1024, Uploads: &UploadsConfig{ @@ -54,7 +53,6 @@ func Test_Config_Valid(t *testing.T) { func Test_Config_NoUploads(t *testing.T) { cfg := &Config{ - Enable: true, Address: ":8080", MaxRequest: 1024, Workers: &roadrunner.ServerConfig{ @@ -73,7 +71,6 @@ func Test_Config_NoUploads(t *testing.T) { func Test_Config_NoWorkers(t *testing.T) { cfg := &Config{ - Enable: true, Address: ":8080", MaxRequest: 1024, Uploads: &UploadsConfig{ @@ -87,7 +84,6 @@ func Test_Config_NoWorkers(t *testing.T) { func Test_Config_NoPool(t *testing.T) { cfg := &Config{ - Enable: true, Address: ":8080", MaxRequest: 1024, Uploads: &UploadsConfig{ @@ -110,7 +106,6 @@ func Test_Config_NoPool(t *testing.T) { func Test_Config_DeadPool(t *testing.T) { cfg := &Config{ - Enable: true, Address: ":8080", MaxRequest: 1024, Uploads: &UploadsConfig{ @@ -128,7 +123,6 @@ func Test_Config_DeadPool(t *testing.T) { func Test_Config_InvalidAddress(t *testing.T) { cfg := &Config{ - Enable: true, Address: "", MaxRequest: 1024, Uploads: &UploadsConfig{ |