Name tests properly

This commit is contained in:
Mariano Cano 2022-09-20 15:53:08 -07:00
parent 75bff055fc
commit 3f58f30b21

View file

@ -79,8 +79,7 @@ func TestNew(t *testing.T) {
} }
} }
func Test_service_Validate(t *testing.T) { func TestEngine_Validate(t *testing.T) {
type fields struct { type fields struct {
hasNameConstraints bool hasNameConstraints bool
permittedDNSDomains []string permittedDNSDomains []string
@ -223,7 +222,7 @@ func Test_service_Validate(t *testing.T) {
} }
} }
func Test_service_Validate_nil(t *testing.T) { func TestEngine_Validate_nil(t *testing.T) {
var e *Engine var e *Engine
if err := e.Validate([]string{"www.example.com"}, nil, nil, nil); err != nil { if err := e.Validate([]string{"www.example.com"}, nil, nil, nil); err != nil {
t.Errorf("service.Validate() error = %v, wantErr false", err) t.Errorf("service.Validate() error = %v, wantErr false", err)