diff --git a/paths_windows_test.go b/paths_windows_test.go index bf3de2e..a6d99e6 100644 --- a/paths_windows_test.go +++ b/paths_windows_test.go @@ -16,7 +16,7 @@ func TestPaths(t *testing.T) { }{ {NewScope(System, "", "foobar"), "C:\\ProgramData\\foobar", "C:\\ProgramData\\foobar\\Cache", "C:\\ProgramData\\foobar\\Config\\foobar.conf", "C:\\ProgramData\\foobar\\Logs\\foobar.log"}, {NewScope(User, "", "foobar"), "C:\\Users\\appveyor\\AppData\\Local\\foobar", "C:\\Users\\appveyor\\AppData\\Local\\foobar\\Cache", "C:\\Users\\appveyor\\AppData\\Local\\foobar\\Config\\foobar.conf", "C:\\Users\\appveyor\\AppData\\Local\\foobar\\Logs\\foobar.log"}, - {NewCustomHomeScope("C:\\tmp", "", "foobar"), "C:\\tmp\\foobar", "C:\\tmp\\Cache", "C:\\tmp\\Config\\foobar.conf", "C:\\tmp\\Logs\\foobar.log"}, + {NewCustomHomeScope("C:\\tmp", "", "foobar"), "C:\\tmp", "C:\\tmp\\Cache", "C:\\tmp\\Config\\foobar.conf", "C:\\tmp\\Logs\\foobar.log"}, } for _, tt := range tests { path, err := tt.scope.DataDir()