diff --git a/Makefile b/Makefile index e8930cca..eedbf0a8 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ NOW := $(shell date +"%FT%T%z") OS := $(shell uname) # ROOT_DIR := $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST)))) -TESTFOLDER := $(shell $(GO) list ./... | grep -vE 'examples|tests|openai|aigc|neo|share*') +TESTFOLDER := $(shell $(GO) list ./... | grep -vE 'examples|tests|openai|aigc|neo|twilio|share*') TESTTAGS ?= "" # TESTWIDGETS := $(shell $(GO) list ./widgets/...) diff --git a/messenger/providers/mailer/mailer.go b/messenger/providers/mailer/mailer.go index 85de7ed5..a0041683 100644 --- a/messenger/providers/mailer/mailer.go +++ b/messenger/providers/mailer/mailer.go @@ -215,7 +215,7 @@ func (p *Provider) GetPublicInfo() types.ProviderPublicInfo { if p.config.Description != "" { description = p.config.Description } - + return types.ProviderPublicInfo{ Name: p.config.Name, Type: "mailer", diff --git a/messenger/providers/mailgun/mailgun.go b/messenger/providers/mailgun/mailgun.go index 28a68d95..9b0ce30a 100644 --- a/messenger/providers/mailgun/mailgun.go +++ b/messenger/providers/mailgun/mailgun.go @@ -102,7 +102,7 @@ func (p *Provider) GetPublicInfo() types.ProviderPublicInfo { if p.config.Description != "" { description = p.config.Description } - + return types.ProviderPublicInfo{ Name: p.config.Name, Type: "mailgun",