Remove hardcoded paths to fix randomly failing tests (#3347)
* Remove hardcoded paths to fix randomly failing tests * Use correct function for merge path
This commit is contained in:
parent
d8dff304c0
commit
be1330ec89
8 changed files with 19 additions and 3 deletions
|
@ -215,6 +215,7 @@ var (
|
|||
// Repository local settings
|
||||
Local struct {
|
||||
LocalCopyPath string
|
||||
LocalWikiPath string
|
||||
} `ini:"-"`
|
||||
}{
|
||||
AnsiCharset: "",
|
||||
|
@ -254,8 +255,10 @@ var (
|
|||
// Repository local settings
|
||||
Local: struct {
|
||||
LocalCopyPath string
|
||||
LocalWikiPath string
|
||||
}{
|
||||
LocalCopyPath: "tmp/local-repo",
|
||||
LocalWikiPath: "tmp/local-wiki",
|
||||
},
|
||||
}
|
||||
RepoRootPath string
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue