Skip to content

Commit

Permalink
Fix resolver tests
Browse files Browse the repository at this point in the history
  • Loading branch information
evanpurkhiser committed Jul 12, 2019
1 parent 4fc6918 commit 3021eec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions resolver/resolver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func TestResolveDotfiles(t *testing.T) {
Path: "base/bash/conf",
},
},
InstallFiles: []string{"base/bash.inst"},
InstallScripts: []string{"base/bash.inst"},
},
{
Path: "bash/conf2",
Expand All @@ -79,7 +79,7 @@ func TestResolveDotfiles(t *testing.T) {
Path: "base/bash/conf2",
},
},
InstallFiles: []string{"base/bash.inst"},
InstallScripts: []string{"base/bash.inst"},
},
{
Path: "blank",
Expand Down Expand Up @@ -121,7 +121,7 @@ func TestResolveDotfiles(t *testing.T) {
Override: true,
},
},
InstallFiles: []string{"base/generic-config.inst"},
InstallScripts: []string{"base/generic-config.inst"},
},
{
Path: "multi-composed",
Expand Down Expand Up @@ -313,7 +313,7 @@ func TestResolveDotfiles(t *testing.T) {
"%s: [%s] I[%s]",
dotfile.Path,
strings.Join(sourceFiles, ", "),
strings.Join(dotfile.InstallFiles, ", "),
strings.Join(dotfile.InstallScripts, ", "),
)

dotfileList = append(dotfileList, str)
Expand Down

0 comments on commit 3021eec

Please sign in to comment.