Skip to content

Commit

Permalink
Fixed incorrect import
Browse files Browse the repository at this point in the history
  • Loading branch information
louismunro committed Mar 26, 2018
1 parent a8bab01 commit 43d1b12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions upup/pkg/fi/nodeup/nodetasks/file_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ func TestFileDependencies(t *testing.T) {
parent: &File{
Path: parentFileName,
Contents: fi.NewStringResource("I am depended on by " + childFileName),
Type: nodetasks.FileType_File,
Type: FileType_File,
},
child: &File{
AfterFiles: []string{parentFileName},
Path: childFileName,
Contents: fi.NewStringResource("I depend on " + parentFileName),
Type: nodetasks.FileType_File,
Type: FileType_File,
},
},
}
Expand Down

0 comments on commit 43d1b12

Please sign in to comment.