Skip to content

Commit 9ddd388

Browse files
committed
Minor Windows test cases refactor
1 parent c523bf8 commit 9ddd388

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

paths_windows_test.go

+17-17
Original file line numberDiff line numberDiff line change
@@ -21,49 +21,49 @@ func TestDefaultBaseDirs(t *testing.T) {
2121
winDir := `C:\Windows`
2222

2323
envSamples := []*envSample{
24-
&envSample{
24+
{
2525
name: "XDG_DATA_HOME",
2626
expected: localAppData,
2727
actual: &xdg.DataHome,
2828
},
29-
&envSample{
29+
{
3030
name: "XDG_DATA_DIRS",
3131
expected: []string{roamingAppData, programData},
3232
actual: &xdg.DataDirs,
3333
},
34-
&envSample{
34+
{
3535
name: "XDG_CONFIG_HOME",
3636
expected: localAppData,
3737
actual: &xdg.ConfigHome,
3838
},
39-
&envSample{
39+
{
4040
name: "XDG_CONFIG_DIRS",
4141
expected: []string{programData},
4242
actual: &xdg.ConfigDirs,
4343
},
44-
&envSample{
44+
{
4545
name: "XDG_CACHE_HOME",
4646
expected: filepath.Join(localAppData, "cache"),
4747
actual: &xdg.CacheHome,
4848
},
49-
&envSample{
49+
{
5050
name: "XDG_RUNTIME_DIR",
5151
expected: localAppData,
5252
actual: &xdg.RuntimeDir,
5353
},
54-
&envSample{
54+
{
5555
name: "XDG_STATE_HOME",
5656
expected: localAppData,
5757
actual: &xdg.StateHome,
5858
},
59-
&envSample{
59+
{
6060
name: "XDG_APPLICATION_DIRS",
6161
expected: []string{
6262
filepath.Join(roamingAppData, "Microsoft", "Windows", "Start Menu", "Programs"),
6363
},
6464
actual: &xdg.ApplicationDirs,
6565
},
66-
&envSample{
66+
{
6767
name: "XDG_FONT_DIRS",
6868
expected: []string{
6969
filepath.Join(winDir, "Fonts"),
@@ -170,42 +170,42 @@ func TestDefaultUserDirs(t *testing.T) {
170170
public := filepath.Join(home, "Public")
171171

172172
samples := []*envSample{
173-
&envSample{
173+
{
174174
name: "XDG_DESKTOP_DIR",
175175
expected: filepath.Join(home, "Desktop"),
176176
actual: &xdg.UserDirs.Desktop,
177177
},
178-
&envSample{
178+
{
179179
name: "XDG_DOWNLOAD_DIR",
180180
expected: filepath.Join(home, "Downloads"),
181181
actual: &xdg.UserDirs.Download,
182182
},
183-
&envSample{
183+
{
184184
name: "XDG_DOCUMENTS_DIR",
185185
expected: filepath.Join(home, "Documents"),
186186
actual: &xdg.UserDirs.Documents,
187187
},
188-
&envSample{
188+
{
189189
name: "XDG_MUSIC_DIR",
190190
expected: filepath.Join(home, "Music"),
191191
actual: &xdg.UserDirs.Music,
192192
},
193-
&envSample{
193+
{
194194
name: "XDG_PICTURES_DIR",
195195
expected: filepath.Join(home, "Pictures"),
196196
actual: &xdg.UserDirs.Pictures,
197197
},
198-
&envSample{
198+
{
199199
name: "XDG_VIDEOS_DIR",
200200
expected: filepath.Join(home, "Videos"),
201201
actual: &xdg.UserDirs.Videos,
202202
},
203-
&envSample{
203+
{
204204
name: "XDG_TEMPLATES_DIR",
205205
expected: filepath.Join(home, "Templates"),
206206
actual: &xdg.UserDirs.Templates,
207207
},
208-
&envSample{
208+
{
209209
name: "XDG_PUBLICSHARE_DIR",
210210
expected: public,
211211
actual: &xdg.UserDirs.PublicShare,

0 commit comments

Comments
 (0)