Skip to content

Commit f0d56b9

Browse files
committed
Update Makefile to exclude 'twilio' from test folder and clean up whitespace in mailer and mailgun provider files
1 parent 436d101 commit f0d56b9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ NOW := $(shell date +"%FT%T%z")
1010
OS := $(shell uname)
1111

1212
# ROOT_DIR := $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
13-
TESTFOLDER := $(shell $(GO) list ./... | grep -vE 'examples|tests|openai|aigc|neo|share*')
13+
TESTFOLDER := $(shell $(GO) list ./... | grep -vE 'examples|tests|openai|aigc|neo|twilio|share*')
1414
TESTTAGS ?= ""
1515

1616
# TESTWIDGETS := $(shell $(GO) list ./widgets/...)

messenger/providers/mailer/mailer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ func (p *Provider) GetPublicInfo() types.ProviderPublicInfo {
215215
if p.config.Description != "" {
216216
description = p.config.Description
217217
}
218-
218+
219219
return types.ProviderPublicInfo{
220220
Name: p.config.Name,
221221
Type: "mailer",

messenger/providers/mailgun/mailgun.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ func (p *Provider) GetPublicInfo() types.ProviderPublicInfo {
102102
if p.config.Description != "" {
103103
description = p.config.Description
104104
}
105-
105+
106106
return types.ProviderPublicInfo{
107107
Name: p.config.Name,
108108
Type: "mailgun",

0 commit comments

Comments
 (0)