rename: MIRE_VISIBLE_HOME to MIRE_HOME

This commit is contained in:
2026-03-21 23:04:11 +00:00
parent 254b9d28a5
commit 3dfe7a8b67
6 changed files with 34 additions and 34 deletions
+2 -2
View File
@@ -438,9 +438,9 @@ func MustGitInit(t *testing.T, dir string) {
}
func DefaultWrittenConfig(testDir string) string {
return "[mire]\n test_dir = \"" + testDir + "\"\n\n[sandbox]\n visible_home = \"/home/test\"\n"
return "[mire]\n test_dir = \"" + testDir + "\"\n\n[sandbox]\n home = \"/home/test\"\n"
}
func ValidConfigContent(testDir string) string {
return "[mire]\ntest_dir = \"" + testDir + "\"\n\n[sandbox]\nvisible_home = \"/home/test\"\n"
return "[mire]\ntest_dir = \"" + testDir + "\"\n\n[sandbox]\nhome = \"/home/test\"\n"
}