From 74d1472a43408f0b076c768a6ed765f73889b33b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E4=BF=8A=E5=AE=8F?= <389838709@qq.com> Date: Tue, 6 Aug 2024 11:09:39 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=AF=E4=BB=98=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/third/paymentService/payment_test.go | 8 +------- config/config.go | 2 +- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/app/third/paymentService/payment_test.go b/app/third/paymentService/payment_test.go index 819a96e..07dab2b 100644 --- a/app/third/paymentService/payment_test.go +++ b/app/third/paymentService/payment_test.go @@ -1,7 +1,6 @@ package paymentService import ( - "PaymentCenter/bootstrap" "PaymentCenter/config" "context" "crypto/md5" @@ -28,12 +27,7 @@ func TestMarketSendRequest_Market(t *testing.T) { //加载配置 opts.ConfFile = "../../../.env" - conf, err := config.Load(opts.ConfFile) - if err != nil { - return - } - //引导程序 - err = bootstrap.Bootstrap(conf) + _, err := config.Load(opts.ConfFile) if err != nil { return } diff --git a/config/config.go b/config/config.go index c9a2848..50bf34b 100644 --- a/config/config.go +++ b/config/config.go @@ -93,7 +93,7 @@ type CronConfig struct { } type PayService struct { - Host string `toml:"TestHost"` + Host string `toml:"Host"` IsProd bool `toml:"IsProd"` }