From 6055ab1d157971a24dedb0b0fdcee8ead16fbb77 Mon Sep 17 00:00:00 2001 From: CorrectRoadH Date: Fri, 12 Jul 2024 15:40:56 +0800 Subject: [PATCH] fix cicd test --- pkg/port_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/port_test.go b/pkg/port_test.go index c46278c..6ca88e8 100644 --- a/pkg/port_test.go +++ b/pkg/port_test.go @@ -31,6 +31,7 @@ func setupGatewayConfig(t *testing.T) func() { ConfigFilePath := filepath.Join(constants.DefaultConfigPath, common.GatewayName+"."+common.GatewayConfigType) if _, err := os.Stat(ConfigFilePath); os.IsNotExist(err) { // create config file + os.MkdirAll(constants.DefaultConfigPath, os.ModePerm) file, err := os.Create(ConfigFilePath) if err != nil { panic(err) @@ -58,6 +59,7 @@ func setupIncorrectGatewayConfig(t *testing.T) { ConfigFilePath := filepath.Join(constants.DefaultConfigPath, common.GatewayName+"."+common.GatewayConfigType) if _, err := os.Stat(ConfigFilePath); os.IsNotExist(err) { // create config file + os.MkdirAll(constants.DefaultConfigPath, os.ModePerm) file, err := os.Create(ConfigFilePath) if err != nil { panic(err)