Skip to content

Commit 3021eec

Browse files
committed
Fix resolver tests
1 parent 4fc6918 commit 3021eec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

resolver/resolver_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ func TestResolveDotfiles(t *testing.T) {
6868
Path: "base/bash/conf",
6969
},
7070
},
71-
InstallFiles: []string{"base/bash.inst"},
71+
InstallScripts: []string{"base/bash.inst"},
7272
},
7373
{
7474
Path: "bash/conf2",
@@ -79,7 +79,7 @@ func TestResolveDotfiles(t *testing.T) {
7979
Path: "base/bash/conf2",
8080
},
8181
},
82-
InstallFiles: []string{"base/bash.inst"},
82+
InstallScripts: []string{"base/bash.inst"},
8383
},
8484
{
8585
Path: "blank",
@@ -121,7 +121,7 @@ func TestResolveDotfiles(t *testing.T) {
121121
Override: true,
122122
},
123123
},
124-
InstallFiles: []string{"base/generic-config.inst"},
124+
InstallScripts: []string{"base/generic-config.inst"},
125125
},
126126
{
127127
Path: "multi-composed",
@@ -313,7 +313,7 @@ func TestResolveDotfiles(t *testing.T) {
313313
"%s: [%s] I[%s]",
314314
dotfile.Path,
315315
strings.Join(sourceFiles, ", "),
316-
strings.Join(dotfile.InstallFiles, ", "),
316+
strings.Join(dotfile.InstallScripts, ", "),
317317
)
318318

319319
dotfileList = append(dotfileList, str)

0 commit comments

Comments
 (0)