Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cwize1 committed Apr 11, 2024
1 parent 61e6600 commit c92a033
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions toolkit/tools/pkg/imagecustomizerlib/imagecustomizer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ func TestValidateConfigdditionalFilesIsDir(t *testing.T) {
}

func TestValidateConfigScript(t *testing.T) {
err := validScripts(testDir, &imagecustomizerapi.Scripts{
err := validateScripts(testDir, &imagecustomizerapi.Scripts{
PostCustomization: []imagecustomizerapi.Script{
{
Path: "scripts/postcustomizationscript.sh",
Expand All @@ -173,7 +173,7 @@ func TestValidateConfigScript(t *testing.T) {
}

func TestValidateConfigScriptNonLocalFile(t *testing.T) {
err := validScripts(testDir, &imagecustomizerapi.Scripts{
err := validateScripts(testDir, &imagecustomizerapi.Scripts{
FinalizeCustomization: []imagecustomizerapi.Script{
{
Path: "../a.sh",
Expand All @@ -184,7 +184,7 @@ func TestValidateConfigScriptNonLocalFile(t *testing.T) {
}

func TestValidateConfigScriptNonExecutable(t *testing.T) {
err := validScripts(testDir, &imagecustomizerapi.Scripts{
err := validateScripts(testDir, &imagecustomizerapi.Scripts{
FinalizeCustomization: []imagecustomizerapi.Script{
{
Path: "files/a.txt",
Expand Down

0 comments on commit c92a033

Please sign in to comment.