2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 12:40:25 +08:00

fix: tests

This commit is contained in:
2025-12-03 19:18:42 +08:00
parent 03766381df
commit 9fe1776cea
2 changed files with 2 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ func (s *VhostTestSuite) SetupTest() {
s.Require().NoError(err)
s.configDir = configDir
// 创建 vhost 目录
// 创建 site 目录
err = os.MkdirAll(filepath.Join(configDir, "site"), 0755)
s.Require().NoError(err)

View File

@@ -451,7 +451,7 @@ func (s *ProxyVhostTestSuite) SetupTest() {
s.Require().NoError(err)
s.configDir = configDir
// 创建 vhost 和 global 目录
// 创建 site 和 shared 目录
s.NoError(os.MkdirAll(filepath.Join(configDir, "site"), 0755))
s.NoError(os.MkdirAll(filepath.Join(configDir, "shared"), 0755))